-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact.html
More file actions
41 lines (41 loc) · 1.91 KB
/
contact.html
File metadata and controls
41 lines (41 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="style.css">
<title>Contact | Labyrinth Robotics FRC Team 9150</title>
</head>
<body>
<header>
<nav class="navbar">
<a href="/" class="logo"><img src="assets/logo9150.png" alt="Labyrinth Robotics Logo" class="logo-img"> Labyrinth Robotics 9150</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="sponsors.html">Sponsors</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
<section class="hero hero-small animate-fade-in">
<h1>Contact Us</h1>
<p>Get in touch with Labyrinth Robotics FRC Team 9150!</p>
</section>
</header>
<main>
<section class="contact animate-slide-up" style="max-width:600px; margin:2.5rem auto; background:#181818; border-radius:16px; box-shadow:0 4px 24px rgba(250,21,0,0.07); padding:2.5rem 2rem; text-align:center;">
<h2 style="color:#FA1500; margin-bottom:1rem;">Email Us</h2>
<p style="color:#A5A5A5; font-size:1.15rem; margin-bottom:2rem;">For team inquiries, sponsorships, or general questions, reach out to our team captain directly.</p>
<a href="mailto:captain@labyrobots.org?subject=Labyrinth%20Robotics%20Inquiry" class="cta-btn animate-pop" style="margin-bottom:2rem;">Email Team Captain</a>
</section>
</main>
<!-- footer import -->
<div id="footer-include"></div>
<script>
fetch('footer.html')
.then(response => response.text())
.then(html => { document.getElementById('footer-include').innerHTML = html; });
</script>
</body>
</html>