-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboosters.html
More file actions
31 lines (28 loc) · 902 Bytes
/
boosters.html
File metadata and controls
31 lines (28 loc) · 902 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>SpaceX History</title>
<link rel="stylesheet" type="text/css" href="boosters.css">
</head>
<body>
<header>
<h1 class="title">SpaceX History</h1>
<nav class="navigation">
<ul>
<li><a href="index.html" class="slide-bar">Launches</a></li>
<li><a href="padtests.html" class="slide-bar">Pad Tests</a></li>
<li><a href="boosters.html" class="slide-bar">Re-Flown Boosters</a></li>
<li><a href="fairings.html" class="slide-bar">Fairings</a></li>
<li><a href="capsules.html" class="slide-bar">Capsules</a></li>
</ul>
</nav>
</header>
<main>
<h2 class="fade-in">Re-Flown Boosters</h2>
<section id="boosters">
<!-- Dynamically generated booster cards will be inserted here -->
</section>
</main>
<script src="boosters.js"></script>
</body>
</html>