-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetStarted.html
32 lines (28 loc) · 1.54 KB
/
getStarted.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Get Started</title>
<link rel="stylesheet" href="getStarted.css">
</head>
<body>
<section id="getStarted">
<img src="firstPlanetBack.png" alt="background" class="text-image">
<img src="trackFirPlanet.png" alt="Track your first planet" class="fir-image">
<!-- Instructions div within the #getStarted section -->
<div class="instructions">
<h2>Instructions</h2>
<p>Navigate to NASA Exoplanet Watch for more details</p>
<ol>
<li>Hey 👋 ready to start tracking some exoplanets?
Let’s get started, to begin tracking your exoplanets, you’ll need: a computer or other device (school-issued), and a personal email account.
The process begins from small telescopes in the ground, that have been collecting data on the amount of light a distant star has been emitting over a period of time. This data can be retrieved from NASA’s exoplanet watch website (join mailing list and receive the data to start tracking your first exoplanet). Next, this data is entered into a program that generates a light curve (we’ll discuss how these work later),
How do these light curves work?
</li>
</ol>
</div>
</section>
<script src="getStarted.js"></script>
</body>
</html>