-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
80 lines (73 loc) · 2.58 KB
/
team.html
File metadata and controls
80 lines (73 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Departments | Team 10152</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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="sponsorship.html">Sponsors</a></li>
<li><a class="join-btn" href="https://forms.gle/GPbsaCeZxtxsVJex8" target="_blank">Join Us</a></li>
</ul>
</nav>
</header>
<section class="page-hero"><h1>Four Departments</h1></section>
<section class="departments container">
<div class="dept">
<h2>Software</h2>
<p>Autonomous routines, vision, and control algorithms.</p>
</div>
<div class="dept">
<h2>Design</h2>
<p>CAD, simulation, and aesthetics for form & function.</p>
</div>
<div class="dept">
<h2>Mechanics</h2>
<p>Manufacturing sturdy drivetrains and mechanisms.</p>
</div>
<div class="dept">
<h2>Business</h2>
<p>Outreach, media, and fundraising to power the team.</p>
</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>