forked from TeamParadise/Team_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
227 lines (217 loc) · 10 KB
/
index.html
File metadata and controls
227 lines (217 loc) · 10 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!doctype html>
<html lang="en">
<head>
<link
rel="icon"
type="image/x-icon"
href="/Resources/Favicons/favicon.png"
/>
<link rel="stylesheet" href="/Pages/style.css" />
<script src="https://cdn.tailwindcss.com"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script>
window.addEventListener("DOMContentLoaded", (event) => {
fetch("/Pages/navbar.html")
.then((response) => response.text())
.then((data) => {
document.getElementById("navbar").innerHTML = data;
});
fetch("/Pages/socials.html")
.then((response) => response.text())
.then((data) => {
document.getElementById("socials").innerHTML = data;
});
});
</script>
</head>
<body>
<!--Navigation Bar-->
<div id="navbar"></div>
<!--Background Image + Logo-->
<header>
<section class="logo-container">
<img
src="/Resources/ParadiseLogo.png"
id="Logo-Image"
alt="Team 1165 Logo"
/>
<img
src="/Resources/Homepage-Picture.jpg"
id="Background-Image"
alt="Background Image"
/>
</section>
</header>
<main>
<section id="main-section">
<section id="home-section">
<!-- About Us -->
<section class="section-white">
<header>
<h2 class="header2">About Us</h2>
</header>
<section class="text-image-chunk" id="about-us">
<img
src="/Resources/Team Photo 2025.JPG"
id="about-us-image"
alt="Team Picture"
/>
<div id="about-us-text">
Our team's annual goal is to create a team
of excited students that bring academic
knowledge to robotics competition. We are part
of the
<i>FIRST</i> (For Inspiration and Recognition of
Science and Technology) and participate in
<i>FIRST</i> Robotics Competitions (FRC).
<br />
<br />
FRC combines the excitement of competition with
rigors of science and technology. Under strict
rules, limited resources are challenged to
engineer robot to preform a set of tasks against
a field of competitors, raise funds, design a
team “brand”, and hone teamwork skills.
</div>
</section>
</section>
<!-- Projects -->
<!-- <section class="section-gray">
<header>
<h2 class="header2">Projects</h2>
</header>
<section class="text-image-chunk" id="Rhino-2024">
<p id="projects">
For the 2024 FRC CRESCENDO Season, Team Paradise
built "The Rhino".<br /><br />
Hueneme Port (California)<br /><br />
AZ Valley - Gracious Professionalism Award
Winner, Alliance Captain<br /><br />
AZ East - Gracious Professionalism Award Winner,
1st pick of 6th Seed Alliance.<br />
</p>
<img
src="/Resources/Rhino-2024.jpg"
id="projects-image-Rhino-2024"
alt="Team Picture"
/>
</section>
</section> -->
<!-- Leaders -->
<section class="section-white" id="leaders">
<p class="leaders-title">Teacher Sponsors</p>
<section id="head-mentors">
<ul class="leaders-list">
<li id="lead-coach-1">
<div>Melanie Young</div>
<span> Head Coach </span>
</li>
<li id="lead-coach-2">
<div>Alexander Ruiz</div>
<span> Coach </span>
</li>
</ul>
</section>
<p class="leaders-title">Mentors</p>
<section id="mentors-1">
<ul class="leaders-list">
<!-- <li>
<div>N/A</div>
<span> Build & Strategy </span>
</li> -->
<!-- <li>
<div>N/A</div>
<span> Administration & Build </span>
</li> -->
<li>
<div>David Boire</div>
<span> Build & Design </span>
</li>
<li>
<div>Ken Whitley</div>
<span> Build </span>
</li>
<!-- <li> -->
<!-- <div>N/A</div> -->
<!-- <span> Administration & Strategy </span> -->
<!-- </li> -->
<li>
<div>Ethan Mullins</div>
<span> Build & Design </span>
</li>
<li>
<div>Benjamin Levine</div>
<span> FIRST </span>
</li>
<li>
<div>John Studnicka</div>
<span> Programming & Web Design </span>
</li>
</ul>
</section>
<p class="leaders-title">Onseason Officers</p>
<section id="officers">
<ul class="leaders-list">
<li>
<div>Michael</div>
<span> President </span>
</li>
<li>
<div>Bridget</div>
<span> Vice President </span>
</li>
<li>
<div>Anthony</div>
<span> Treasurer </span>
</li>
<li>
<div>Athena</div>
<span> Secretary </span>
</li>
</ul>
</section>
<p class="leaders-title">Captains</p>
<section id="captains">
<ul class="leaders-list">
<li>
<div>Michael</div>
<span> Captain of Design </span>
</li>
<li>
<div>Andrew</div>
<span> Captain of CAD </span>
</li>
<li>
<div>Anthony</div>
<span> Captain of Hardware </span>
</li>
<li>
<div>Bridget</div>
<span> Captain of Media </span>
</li>
<li>
<div>Ashton</div>
<span> Captain of Software </span>
</li>
<li>
<div>Max</div>
<span> Captain of Safety </span>
</li>
<!-- <li>
<div>Kaylynn</div>
<span> Captain of Organization </span>
</li> -->
<li>
<div>Michael</div>
<span> Captain of Scouting </span>
</li>
</ul>
</section>
</section>
</section>
<!-- Footer -->
<div id="socials"></div>
</section>
</main>
</body>
</html>