-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContact.html
More file actions
146 lines (139 loc) · 8.53 KB
/
Contact.html
File metadata and controls
146 lines (139 loc) · 8.53 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!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="contact" id="contact" aria-labelledby="contact-heading">
<div class="container">
<div class="section-title">
<h2 id="contact-heading">Get In Touch With Our Team</h2>
<p class="section-subtitle">Ready to launch our partnership and support aerospace
education?</p>
</div>
<div class="contact-grid">
<div class="contact-info">
<h3>Contact Information</h3>
<address>
<div class="contact-item">
<div class="contact-icon" role="img" aria-label="Location">📍</div>
<div class="contact-details">
<h4>Location</h4>
<p>South Brunswick, New Jersey, United States</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon" role="img" aria-label="Email">📧</div>
<div class="contact-details">
<h4>Email</h4>
<p><a href="mailto:sbaerospacefirst@gmail.com">sbaerospacefirst@gmail.com</a>
</p>
</div>
</div>
</address>
<div class="social-links" role="navigation" aria-label="Social media links">
<a href="#" aria-label="Follow us on Facebook">FB</a>
<a href="#" aria-label="Follow us on Twitter">t</a>
<a href="#" aria-label="Follow us on Instagram">i</a>
<a href="#" aria-label="Connect with us on LinkedIn">in</a>
</div>
</div>
<div class="contact-form">
<form id="contactForm" aria-labelledby="contact-heading">
<div class="form-group">
<label for="contactName">Name</label>
<input type="text" id="contactName" placeholder="Your name" required>
</div>
<div class="form-group">
<label for="contactEmail">Email</label>
<input type="email" id="contactEmail" placeholder="Your email" required>
</div>
<div class="form-group">
<label for="contactSubject">Subject</label>
<input type="text" id="contactSubject" placeholder="Subject" required>
</div>
<div class="form-group">
<label for="contactMessage">Message</label>
<textarea id="contactMessage" rows="4" placeholder="Your message"
required></textarea>
</div>
<button type="submit" class="btn btn-block">Send Message</button>
</form>
</div>
</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>