-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (91 loc) · 3.61 KB
/
index.html
File metadata and controls
101 lines (91 loc) · 3.61 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Finding Planets - TESS</title>
<link href="https://fonts.googleapis.com/css?family=Playfair+Display|Raleway&display=swap" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<script defer="defer" src="./testimonials.js"></script>
<script src="./event-listeners.js" async></script>
<div class="container">
<header class="intro">
<div><h1>Finding Planets</h1><h2>TESS</h2>
</div>
<nav class="nav">
<a class="nav-link" href="/about.html">About</a>
<a class="nav-link" href="/how.html">How</a>
<a class="nav-link" href="https://findingplanets.netlify.com/sign_up">Sign Up</a>
</nav>
</header>
<section class="main-image">
<div class="image-container">
<img src="Images/main-image.build-week.jpg" id="img1">
<img src="Images/lucas-marconnet-Kls_Hq8p-xI-unsplash.jpg" id="img2">
<div class="CTA-box">
<div class="h2-box">
<h2 class="animate-h2">We can't find them</h2>
<h2 class="animate-h2">without you.</h2>
</div>
<a class="CTA-button" href="https://findingplanets.netlify.com/">Log In</a>
</div>
</div>
</section>
<section>
<div class="one-click">
<h3><strong><i>STAR HUNTERS WANTED</strong></i></h3>
<h4>You want to have your pastimes to have a purpose.</h4>
<h4>Be part of a legacy that will last for centuries.</h4>
</div>
</section>
<section class="benefits">
<div class="benefits-boxes" id="box-1">
<img src="Images/satellite-icon.png" class="benefits-img">
<div><h5 class="benefits-cta">Transiting Expolanet Survey Satellite</h5>
<p>Will scan the entire sky over two years.</p>
</div>
</div>
<div class="benefits-boxes" id="box-2">
<img src="Images/data-icon.png" class="benefits-img">
<div>
<h5 class="benefits-cta">We get LOADS of data</h5>
<p>Without your help, it would take us years to sift through it.</p>
</div>
</div>
<div class="benefits-boxes" id="box-3">
<img src="Images/sort-info-icon.png" class="benefits-img">
<div>
<h5 class="benefits-cta">SORT - ANALYSE - PRIORITISE</h5>
<p>You help us spot the most credible sites for exoplanets.</p>
</div>
</div>
</section>
<section class="testimonials">
<div class="left-button"><</div>
<article class="testimonial" style="display: none;">
<p>Do not look at stars as bright spots only.</p>
<p> Try to take in the vastness of the universe..</p>
<h5>Maria Mitchell</h5>
</article>
<article class="testimonial" style="display: none;">
<p>Equipped with his five senses, man explores the universe around him and calls the adventure Science.</p>
<h5>Edwin Hubble</h5>
</article>
<article class="testimonial" style="display: none;">
<p>If it’s a new planet, sign me up. Give me a place to go and I’ll go.</p>
<h5>Neil deGrasse Tyson</h5>
</article>
<article class="testimonial" style="display: none;">
<p>To confine our attention to terrestrial matters</p> <p>would be to limit the human spirit.</p>
<h5>Stephen Hawking</h5>
</article>
<div class="right-button">></div>
</section>
<footer>
<p>Finding Planets: TESS - Copyright 2019</p>
</footer>
</div>
</body>
</html>