-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
86 lines (72 loc) · 2.41 KB
/
project.html
File metadata and controls
86 lines (72 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects | Roketry</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;800&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="project.css">
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-md bg-white fixed-top border-bottom">
<div class="container-fluid">
<a class="navbar-brand fw-bold" href="index.html">Roketry</a>
<button class="navbar-toggler" type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#tree">Tree</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About Us</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-content">
<h1>Roketry Projects</h1>
<p>Structured evolution of open aerospace systems.</p>
</div>
</section>
<!-- TREE SECTION -->
<section id="tree" class="tree-section">
<div class="tree-container">
<div class="tree-node root">Roketry</div>
<div class="tree-row">
<div class="tree-node">Propulsion</div>
<div class="tree-node">Avionics</div>
<div class="tree-node">Structures</div>
</div>
<div class="tree-row">
<div class="tree-node leaf">Solid Motor</div>
<div class="tree-node leaf">Flight Stack</div>
<div class="tree-node leaf">Liquid Engine</div>
</div>
</div>
</section>
<!-- ABOUT -->
<section id="about" class="about-section">
<div class="about-content">
<h2>About Roketry</h2>
<p>
Roketry is an open-source aerospace initiative focused on structured
system development across propulsion, avionics, and structural domains.
Each branch evolves independently while contributing to the main research line.
</p>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>