-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
69 lines (67 loc) · 2.43 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Blair Space Club</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<!-- Add any additional stylesheets or libraries here -->
</head>
<body>
<div class="top-bar">
<div class="logo">
<img src="icons/logo.png" alt="Club Logo">
<h1>Blair Space Club</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="rocketry.html">Rocketry</a></li>
<li><a href="https://stem-potd.vercel.app/">CubeSat</a></li>
<li><a href="sponsors.html">Sponsors</a></li>
</ul>
</div>
<div class="container">
<h2>About Blair Space Club</h2>
<div class="main-content">
<div class="text-content">
<h3>Club Captains</h3>
<p>
Meet the passionate leaders guiding Blair Space Club:
</p>
<ul>
<li>Allison Lin</li>
<li>Katherine Tang</li>
<li>Eric Zou</li>
<!-- Add more captain names as needed -->
</ul>
<br>
<p>
Blair Space Club is a student-led aerospace enthusiast group based at Montgomery Blair High School in Silver Spring, MD. Our mission is to foster engineering interest within the local community and beyond.
</p>
<p>
We actively participate in various projects, including the Team America Rocket Challenge, where our members design, build, and launch rockets. Additionally, we collaborate with other schools on ambitious projects such as designing and launching a CubeSat into space.
</p>
<p>
Join us for a range of exciting activities and events as we explore the wonders of aerospace engineering together!
</p>
<!-- Add more content as needed -->
</div>
</div>
</div>
<div class="bottom-bar">
<div class="icon-links">
<a href="mailto:[email protected]" onclick="copyToClipboard('[email protected]')">
<img class="contact" src="icons/mail.png" alt="Email">
</a>
<a href="https://www.instagram.com/blairspaceclub/">
<img class="contact" src="icons/instagram.png" alt="Instagram Icon">
</a>
<!-- Add more social media icons as needed -->
</div>
<p>Blair Space Club is fiscally sponsored by The Hack Foundation (d.b.a. Hack Club), a 501(c)(3) nonprofit (EIN: 81-2908499).</p>
</div>
<!-- Add any scripts or additional elements here -->
</body>
</html>