-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (102 loc) · 4.39 KB
/
index.html
File metadata and controls
112 lines (102 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Orbotics | FRC Team 10152</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
</head>
<body>
<header class="sticky-header">
<nav class="navbar container">
<a href="index.html" class="logo">
<span class="logo-text">Team 10152</span>
<img class="logo-icon" src="images/logo.png" alt="logo">
</a>
<button class="burger" aria-label="Toggle navigation">
<span></span><span></span><span></span>
</button>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="about.html">About</a>
<ul class="dropdown-menu">
<li><a href="about.html#mission">Mission</a></li>
<li><a href="history.html">History</a></li>
</ul>
</li>
<li><a href="team.html">Departments</a></li>
<li><a href="partners.html">Donors</a></li>
<li><a class="join-btn" href="https://forms.gle/GPbsaCeZxtxsVJex8" target="_blank">Join Us</a></li>
</ul>
</nav>
</header>
<section class="hero split">
<div class="hero-left">
<h1>Orbotics</h1>
<p>We're a FIRST Robotics team based in Horace Greeley High School. We seek to impact young adults by cultivating skills in engineering, programming, and business through FIRST.</p>
<a href="about.html" class="cta">Discover More</a>
</div>
<div class="hero-right">
<img src="images/2024-2025/FRC.Team.Photo.jpeg" alt="Team group photo">
</div>
</section>
<section class="stats container">
<div class="stat"><h2>40+</h2><p>Active Members</p></div>
<div class="stat"><h2>1</h2><p>Seasons</p></div>
<div class="stat"><h2>∞</h2><p>Innovation</p></div>
</section>
<section class="donors container">
<h2>Our Donors</h2>
<div class="sponsor-grid">
<img src="images/partners/csf.png" alt="CSF Logo">
<img src="images/partners/nasa.png" alt="NASA Logo">
<img src="images/partners/rlc.png" alt="RLC Logo">
<img src="images/partners/indus.png" alt="Indus Logo">
<img src="images/partners/cph.png" alt="CPH Logo">
<img src="images/partners/lin.jpg" alt="Lin Logo">
<img src="images/partners/clubfit.png" alt="ClubFit Logo">
</div>
</section>
<section class="gallery container">
<h2>Season Highlights</h2>
<div class="gallery-grid">
<img src="images/2024-2025/Day3/photo2.jpg" alt="Season highlight">
<img src="images/2024-2025/Day1/photo3.jpg" alt="Season highlight">
<img src="images/2024-2025/Day4/photo1.jpg" alt="Season highlight">
<img src="images/2024-2025/misc/photo3.jpg" alt="Season highlight">
<img src="images/2024-2025/misc/photo5.jpg" alt="Season highlight">
<img src="images/2024-2025/Day2/photo2.jpg" alt="Season highlight">
<img src="images/2024-2025/Day1/photo1.jpg" alt="Season highlight">
<img src="images/2024-2025/Day3/photo1.jpg" alt="Season highlight">
<img src="images/2024-2025/Day4/photo3.jpg" alt="Season highlight">
<img src="images/2024-2025/Day1/photo2.jpg" alt="Season highlight">
<img src="images/2024-2025/misc/photo2.jpg" alt="Season highlight">
<img src="images/2024-2025/Day3/photo3.jpg" alt="Season highlight">
<img src="images/2024-2025/Day4/photo2.jpg" alt="Season highlight">
<img src="images/2024-2025/Day2/photo1.jpg" alt="Season highlight">
<img src="images/2024-2025/misc/photo4.jpg" alt="Season highlight">
<img src="images/2024-2025/misc/photo1.jpg" alt="Season highlight">
</div>
</section>
<footer>
<div class="container footer-flex">
<p>©2025 Orbotics – FRC Team 10152</p>
<div class="social">
<a href="mailto:greeleyrobotics@gmail.com" aria-label="Email">
<i class="fas fa-envelope"></i>
</a>
<a href="https://www.instagram.com/orbotics10152/" target="_blank" aria-label="Instagram">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.linkedin.com/company/greeley-robotics" target="_blank" aria-label="LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</footer>
</body>
</html>