-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
181 lines (181 loc) · 6.23 KB
/
index.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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Nasa Clone Static Site" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NASA Clone</title>
<link rel="icon" href="logo.svg" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Icons+Outlined"
/>
</head>
<body>
<header>
<div class="container">
<img src="logo.svg" alt="NASA Logo" />
</div>
<nav>
<a href="#" class="ms">Missions</a>
<a href="#">Galleries</a>
<a href="#">NASA TV</a>
<a href="#">Follow NASA</a>
<a href="#">Downloads</a>
<a href="#">About</a>
<a href="#">NASA Audiences</a>
</nav>
<div class="search-box">
<input placeholder="Search" type="text" /><span
class="material-icons-outlined"
>search</span
>
<span class="material-icons-outlined">share</span>
</div>
</header>
<div class="header-bottom">
<div class="header-bottom-inner">
<a href="#">Humans in Space</a>
<a href="#">Moon to Mars</a>
<a href="#">Earth</a>
<a href="#">Space Tech</a>
<a href="#">Flight</a>
<a href="#">Solar System and Beyond</a>
<a href="#">STEM Engagement</a>
<a href="#">History</a>
<a href="#">Benefits to You</a>
</div>
</div>
<main>
<section class="banner-container">
<div class="container">
<div class="pic-container">
<div class="pic-left">
<div class="pic-caption">
<a href="#">Video: Artemis I Mission Highlights</a>
</div>
</div>
<div class="pic-right">
<div class="pic-right1">
<div class="pic-right1a">
<div class="pic-caption">
<a href="#">Latest Updates from SWOT</a>
</div>
</div>
<div class="pic-right1b">
<h2 class="heading">NASA Events</h2>
<a href="#"
>Tues, Dec. 13, 3 p.m. EST: Briefing on upcoming SWOT Earth
science mission</a
><br />
<a href="#"
>Wed., Dec. 14, 1 p.m. EST: SWOT Earth science mission
pre-launch briefing</a
><br />
<a href="#"
>Wed., Dec. 14, 2 p.m. EST: "NASA Edge" rollout show for
SWOT Earth science mission</a
><br />
<a href="#"
>Thurs., Dec. 15, 6 a.m. EST: Launch Coverage of the SWOT
Water Survey Mission from Vandenberg Space Force Base in
California</a
><br />
<a href="#"
>Fri. Dec. 16, 12 p.m. EST: Panel discussion to mark the
50th anniversary of the Apollo 17 mission</a
><br />
</div>
</div>
<div class="pic-right2">
<div class="pic-caption">
<a href="#">The 2022 Geminids Meteor Shower Is Approaching</a>
</div>
</div>
</div>
</div>
<div class="grid-container">
<div class="pic-grid">
<div class="grid-up">
<div class="grid-up1">
<div class="pic-caption">
<a href="#"
>NASA Sensors to Help Detect Methane Emitted by
Landfills</a
>
</div>
</div>
<div class="grid-up2">
<div class="pic-caption">
<a href="#"
>60 Years Ago: Mariner 2 First to Explore Venus</a
>
</div>
</div>
<div class="grid-up3">
<div class="pic-caption">
<a href="#"
>NASA’s Webb Unveils Young Stars in Early Stages of
Formation</a
>
</div>
</div>
</div>
<div class="grid-down">
<div class="grid-down1">
<div class="pic-caption">
<a href="#">Hubble Captures Majestic Barred Spiral</a>
</div>
</div>
<div class="grid-down2">
<div class="pic-caption">
<a href="#"
>Chandra Sees Stellar X-rays Exceeding Safety Limits</a
>
</div>
</div>
<div class="grid-down3">
<div class="pic-caption">
<a href="#">Two Exoplanets May Be Mostly Water</a>
</div>
</div>
<div class="grid-down4">
<div class="pic-caption">
<a href="#">SWOT Mission ‘Go’ for Launch Dec. 16</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="footer-container">
<div class="footer-badge">
<a href="#">MORE STORIES</a>
</div>
<div class="nasa-badge">
<img src="logo.svg" alt="NASA Logo" />
<span
>National Aeronautics and Space Administration<br />NASA Official:
Brian Dunbar</span
>
</div>
<div class="footer-end">
<a href="#">No Fear Act</a>
<a href="#">FOIA</a>
<a href="#">Privacy</a>
<a href="#">Office of Inspector General</a>
<a href="#">Office of Special Counsel</a>
<a href="#">Agency Financial Reports</a>
<a href="#">Contact NASA</a>
</div>
</div>
</main>
</body>
</html>