-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (75 loc) · 2.57 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
<!doctype html>
<html>
<head>
<title>SpaceX</title>
<link rel="icon" type="image/x-icon" href="/img/favicon_title.png">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header class="main-header">
<div class="logo">
<a href="#">
<img src="/img/logo.png">
</a>
</div>
<nav class="navbar">
<ul>
<li> <a href="falcon.html">FALCON 9</a> </li>
<li><a href="falcon-heavy.html">FALCON HEAVY</a></li>
<li><a href="dragon.html">DRAGON</a></li>
<li><a href="#">STARSHIP</a></li>
<li><a href="#">HUMAN SPACEFLIGHT</a></li>
<li><a href="#">RIDESHARE</a></li>
<li><a href="#">STARSHIELD</a></li>
<li><a href="#">STARLINK</a></li>
<li><a href="#">SHOP</a></li>
</ul>
</nav>
</header>
<!--SectionA-->
<section class="secA">
<div class="sec-inner">
<h4>Recent Launch</h4>
<h2>NROL-186 Mission</h2>
<a href="#">Rewatch</a>
</div>
</section>
<!--SectionB-->
<section class="secB">
<div class="sec-inner">
<h4>Recent Launch</h4>
<h2>Starlink Mission</h2>
<a href="#">Rewatch</a>
</div>
</section>
<!--SectionC-->
<section class="secC">
<div class="sec-inner">
<h4>Recent Launch</h4>
<h2>Goes-U-Mission</h2>
<a href="#">Learn More</a>
</div>
</section>
<!--SectionD-->
<section class="secD">
<div class="sec-inner">
<h2>Advancing Human Spaceflight</h2>
<a href="#">Learn More</a>
</div>
</section>
<!--SectionE-->
<section class="secE">
<div class="sec-inner">
<h2>To Make Life MULTIPLANATARY</h2>
<a href="#">Learn More</a>
</div>
</section>
<footer>
<ul>
<li>SpaceX © 2024</li>
<li><a href="#" class="footbold">Privacy Policy</a></li>
<li><a href="#" class="footbold">Suppliers</a></li>
</ul>
</footer>
</body>
</html>