-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
109 lines (97 loc) · 3.54 KB
/
about.html
File metadata and controls
109 lines (97 loc) · 3.54 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
102
103
104
105
106
107
108
109
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Finding Planets - About page</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>
<div class="container">
<header class="about-intro">
<div>
<h1>Finding Planets</h1>
<h2>TESS</h2>
</div>
<nav>
<a href="/index.html">Home</a>
<a href="/how.html">How</a>
<a href="https://findingplanets.netlify.com/sign_up">Sign Up</a>
</nav>
</header>
<section>
<div class="about-info">
<h2><strong>Unlock the secrets of the universe</strong></h2>
<div>
<h4>Why scroll idly by, when you can explore the sky?</h4>
<p>We are committed</p>
<p>To empower the experienced, keen eye of the crowd.</p>
<p>Our mission: to find the most probable, most credible sites for exoplanets.</p>
</div>
</div>
</section>
<section class="our-team">
<div><h3>Our Team</h3>
</div>
</section>
<section class="teamTess">
<div class="team-member">
<img src="Images/jayne.png" class="team-img">
<div><h4>Jayne</h4>
<p class="title">Front End Developer.</p>
<p class="job">Specialising: Javascript</p>
<a href="https://github.com/jaynecn"><img src="Images/github-icon.png" class="github-icon"></a>
</div>
</div>
<div class="team-member">
<img src="Images/yu.png" class="team-img">
<div><h4>Yu Yama</h4>
<p class="title">Machine Learning Engineer.</p>
<p class="job">Specialising in finding transits</p>
<a href="https://github.com/dzkha"><img src="Images/github-icon.png" class="github-icon"></a>
</div>
</div>
</section>
<section class="team-gray">
<div class="team-member">
<img src="Images/gustavo.png" class="team-img">
<div><h4>Gustavo</h4>
<p class="title">Team Lead.</p>
<p class="job">Specialising in Full Stack</p>
<a href="https://github.com/gisturiz"><img src="Images/github-icon.png" class="github-icon"></a>
</div>
</div>
<div class="team-member">
<img src="Images/chris.png" class="team-img">
<div><h4>Chris</h4>
<p class="title">Front End Developer.</p>
<p class="job">Specialising: React apps.</p>
<a href="https://github.com/ChrisDelf"><img src="Images/github-icon.png" class="github-icon"></a>
</div>
</div>
</section>
<section class="team-2">
<div class="team-member">
<img src="Images/heorhii.png" class="team-img">
<div><h4>Heorhii</h4>
<p class="title">Front End Developer.</p>
<p class="job">Specialising in React.</p>
<a href="https://github.com/Shweps13"><img src="Images/github-icon.png" class="github-icon"></a>
</div>
</div>
<div class="team-member">
<img src="Images/reed.png" class="team-img">
<div><h4>Reed</h4>
<p class="title">Backend Developer.</p>
<p class="job">Specialising in Mongo DB</p>
<a href="https://github.com/coffeelabor"><img src="Images/github-icon.png" class="github-icon"></a>
</div>
</div>
</section>
<footer>
<p>Finding Planets - TESS 2019</p>
</footer>
</div>
</body>
</html>