-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHome.html
More file actions
108 lines (99 loc) · 5.56 KB
/
Home.html
File metadata and controls
108 lines (99 loc) · 5.56 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>South Brunswick Aerospace Team</title>
<link rel="stylesheet" href="style.css">
<script src="main.js" defer></script>
<!-- Google Search Console Verification -->
<meta name="google-site-verification" content="0g-zsXxK22qk61NeeSB49EWUDqOBXFYPFuvx8hd41Es">
<!-- Primary Meta Tags -->
<title>South Brunswick Aerospace Team</title>
<meta name="title" content="South Brunswick Aerospace Team">
</head>
<body>
<header id="header" role="banner">
<div class="header-container">
<div class="logo">
<img src="./assets/logo/gold-logo.png"
alt="South Brunswick Aerospace Team Logo - Gold rocket emblem" width="50" height="50">
<div class="logo-text">SB Aerospace</div>
</div>
<button class="mobile-nav-toggle" id="mobileNavToggle" aria-label="Toggle mobile navigation menu"
aria-expanded="false">☰</button>
<nav role="navigation" aria-label="Main navigation">
<ul id="navMenu">
<li><a href="Home.html" aria-label="Go to homepage">Home</a></li>
<li><a href="AboutUs.html" aria-label="Learn about our team">About Us</a></li>
<li><a href="Showcase.html" aria-label="View our aerospace projects">Our Work</a></li>
<li><a href="Achievements.html" aria-label="Explore our specialized teams">Teams</a></li>
<li><a href="Sponsorship.html" aria-label="Become a team sponsor">Sponsor</a></li>
<li><a href="Donation.html" aria-label="Make a donation">Donate</a></li>
<li><a href="Contact.html" aria-label="Contact our team">Contact</a></li>
<!--<li><a href="Legal.html" aria-label="View our legal documents">Legal</a></li>-->
</ul>
</nav>
</div>
</header>
<main>
<section class="hero" id="home" role="banner">
<div class="hero-content">
<h1>South Brunswick Aerospace Team</h1>
<div
style="background-color: black; border-radius: 15px; padding: 20px; display: inline-block;">
<p style=" color: gold; margin: 0">
A team of dedicated high schoolers at South Brunswick High School
competing in the American
Rocketry Challenge and pioneering aerospace innovation.
</p>
</div>
<div class="hero-buttons" style="margin-top: 20px;">
<a href="Sponsorship.html" class="btn"
aria-label="Become a sponsor and support our team">Become a Sponsor</a>
<a href="AboutUs.html" class="btn btn-outline"
aria-label="Learn more about our aerospace team">Learn More</a>
</div>
</div>
</section>
</main>
<footer role="contentinfo">
<div class="footer-grid">
<div class="footer-column">
<h3>South Brunswick Aerospace Team</h3>
<p>Pushing aerospace engineering boundaries through innovation, teamwork, and dedication in
competitive rocketry and STEM education.</p>
</div>
<div class="footer-column">
<h3>Site Navigation</h3>
<nav aria-label="Footer navigation">
<ul class="footer-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#showcase">Our Work</a></li>
<li><a href="#achievements">Teams</a></li>
<li><a href="#sponsorship">Sponsor</a></li>
<li><a href="#donation">Donate</a></li>
</ul>
</nav>
</div>
<div class="footer-column">
<h3>Connect With Us</h3>
<nav aria-label="Social media navigation">
<ul class="footer-links">
<li><a href="#" rel="noopener">Facebook</a></li>
<li><a href="#" rel="noopener">Instagram</a></li>
<li><a href="#" rel="noopener">LinkedIn</a></li>
<li><a href="#" rel="noopener">YouTube</a></li>
</ul>
</nav>
</div>
</div>
<div class="copyright">
<p>© 2025 South Brunswick Aerospace Team. All Rights Reserved. Developed by <a
href="https://github.com/samuel-asefa" target="_blank" rel="noopener"
style="color: var(--gold);">Sammy</a>.</p>
</div>
</footer>
</body>
</html>