-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
522 lines (497 loc) · 20.3 KB
/
Copy pathindex.html
File metadata and controls
522 lines (497 loc) · 20.3 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<title>CSM Computer Science</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<link
rel="icon"
type="image/png"
href="path/to/zoom-favicon.png"
sizes="32x32"
/>
<!-- Bootstrap CSS -->
<link href="styles.css" rel="stylesheet">
<!-- Bootstrap JavaScript (Popper.js and Bootstrap JS) -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Font Aw esome icons (free version)-->
<script
src="https://use.fontawesome.com/releases/v6.3.0/js/all.js"
crossorigin="anonymous"
></script>
<!-- Google fonts-->
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,700"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700"
rel="stylesheet"
type="text/css"
/>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="#page-top">
<div class="navbar__logo">
<img src="CS_Club_Logo-removebg-preview.png" alt="CS club logo" style="width:40px; height:40px;" class="rounded-pill"/>
<span class="navbar-title">CSM Computer Science Club </span>
</div>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse show"
data-bs-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle navigation"
>
Menu
<i class="fas fa-bars ms-1"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ms-auto py-4 py-lg-0">
<li class="nav-item">
<a class="nav-link" href="#initiatives">Initiatives</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#gallery">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item"><a class="nav-link" href="#team">Team</a></li>
<li class="nav-item">
<a class="nav-link" href="#contact-section">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead">
<div class="container">
<div class="masthead-heading text-uppercase ">Welcome!</div>
</div>
</header>
<!-- intitiative-->
<section class="page-section" id="initiatives">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Initiatives</h2>
<h3 class="section-subheading text-muted">
What We Do
</h3>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fa-solid fa-handshake-angle fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Mentorship</h4>
<p class="text-muted">
Join us in working alongside local high school robotics teams to
provide support and guide them through their academic careers.
</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-laptop fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Hackathons</h4>
<p class="text-muted">
Dive headfirst into problem-solving by competing with passionate
individuals in a fast-paced, collaborative environment.
</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fa-solid fa-briefcase fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Projects</h4>
<p class="text-muted">
Explore topics ranging graphic design to artificial intelligence
with coders from varying skillsets and backgrounds.
</p>
</div>
</div>
</div>
</section>
<!-- Gallery-->
<section class="page-section bg-light" id="gallery">
<div class="container">
<h2 class="text-center" style="font-size: 60px;">Gallery</h2>
</div>
<div id="demo" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#demo" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="1"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="2"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="3"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="4"></button>
</div>
<!-- The slideshow/carousel -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/meeting.jpg" alt="meeting img" class="d-block w-100 carousel-image">
</div>
<div class="carousel-item">
<img src="images/kid_on_computer.JPG" alt="robotics img" class="d-block w-100 carousel-image">
</div>
<div class="carousel-item">
<img src="images/meeting1.JPG" alt="emilio img" class="d-block w-100 carousel-image">
</div>
<div class="carousel-item">
<img src="images/meeting2.JPG" alt="kiona img" class="d-block w-100 carousel-image">
</div>
<div class="carousel-item">
<img src="images/kid2.JPG" alt="hackathon img" class="d-block w-100 carousel-image">
</div>
</div>
<!-- Left and right controls/icons -->
<button class="carousel-control-prev" type="button" data-bs-target="#demo" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#demo" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
</button>
</div>
</section>
<!-- About-->
<section class="page-section" id="about">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">About</h2>
<h3 class="section-subheading text-muted">
Check out our growth over the last couple of years!
</h3>
</div>
<ul class="timeline">
<li>
<div class="timeline-image">
<img
class="rounded-circle img-fluid square-image"
src="presidential.png"
alt="..."
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2022-Present</h4>
<h4 class="subheading">Our Humble Beginnings</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
Upon enrolling at CSM, co-founders Brendan and Edan dedicated
themselves to creating a thriving computer science community
centered on growth and learning</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img
class="rounded-circle img-fluid square-image"
src="images/robotics.png"
alt="..."
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>November 2022</h4>
<h4 class="subheading">Mentorship Program</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
We proudly established our first of two mentorship
programs with Aragon high school robotics team,
fostering innovation in the next generation of engineers.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img
class="rounded-circle img-fluid square-image image1"
src="images/meeting.jpg"
alt="..."
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>August 2023</h4>
<h4 class="subheading">Year Two</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
Thank you to our incredible community for making our
second year unforgettable, as we celebrate the tremendous
growth with a continuous growth of passionate members!
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img
class="rounded-circle img-fluid square-image"
src="images/kid_on_computer.JPG"
alt="..."
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>November 2023</h4>
<h4 class="subheading">Inaugural Hackathon</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
Our school's first ever hackathon! Organized with the help
of our club, MESA, CC Stem Association, and ProjecTech to
bring together innovative minds and foster creativity.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img
class="rounded-circle img-fluid square-image image1"
src="images/sept2024meeting.jpg"
alt="..."
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>September 2024</h4>
<h4 class="subheading">Year Three</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
Third year start off to a strong start, with a continuous growth of passionate members we have a lot more planned for the future. We want to thank our founding/past leadership (President) Edan Barrios and (Vice-President) Brendan Keane for setting the foundation for years to come!
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<h4>
Be Part
<br />
Of Our
<br />
Story!
</h4>
</div>
</li>
</ul>
</div>
</section>
<!-- Team-->
<section class="page-section bg-light" id="team">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Our Amazing Team</h2>
<h3 class="section-subheading text-muted">
Meet our club founders and officers!
</h3>
</div>
<div class="row">
<div class="col-lg-4">
<div class="team-member">
<img
class="mx-auto rounded-circle"
src="images/tyler.png"
alt="..."
/>
<h4>Tyler Sheridan</h4>
<p class="text-muted">President</p>
</a>
<a class="btn btn-dark btn-social mx-2" href="https://github.com/tsheridan1" target="_blank" aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
</a>
</div>
</div>
<div class="col-lg-4">
<div class="team-member">
<img
class="mx-auto rounded-circle"
src="images/heba.jpg"
alt="..."
/>
<h4>Heba Alazzeh</h4>
<p class="text-muted">Vice-President</p>
</a>
<a class="btn btn-dark btn-social mx-2" href="https://github.com/hebaalazzeh" target="_blank" aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
</a>
<a
class="btn btn-dark btn-social mx-2"
href="https://www.linkedin.com/in/heba-alazzeh/"
aria-label="LinkedIn"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
<div class="col-lg-4">
<div class="team-member">
<img
class="mx-auto rounded-circle"
src="images/matthew.png"
alt="..."
/>
<h4>Matthew Chang</h4>
<p class="text-muted">ICC Representative</p>
<a class="btn btn-dark btn-social mx-2" href="https://www.instagram.com/notalikhalil/" target="_blank" aria-label="Instagram">
<i class="fab fa-instagram"></i>
</a>
</a>
<a
class="btn btn-dark btn-social mx-2" href="https://github.com/tylersheridan0" target="_blank" aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
</a>
<a
class="btn btn-dark btn-social mx-2"
href="#!"
aria-label="Larry Parker LinkedIn Profile"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<p class="large text-muted">
Our officers are committed to creating an inclusive space where members can learn, collaborate,
and thrive in the ever-evolving world of technology. Get to know the faces behind the
code and discover the diverse talents that drive our club forward
</p>
</div>
</div>
</div>
</section>
<!-- Contact-->
<section class="contact-section">
<h2>Contact Us</h2>
<p>Please feel free to reach out to us with any questions, comments, or feedback you may have. We would love to hear from you!</p>
<form id="contactForm" action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="a24e6ab7-17e6-477c-a737-a2bf0096beea">
<div class="row align-items-stretch mb-5">
<div class="col-md-6">
<div class="form-group">
<!-- Name input -->
<input class="form-control" id="name" type="text" name="name" placeholder="Your Name *" required>
<div class="invalid-feedback" data-sb-feedback="name:required">
A name is required.
</div>
</div>
<div class="form-group">
<!-- Email address input -->
<input class="form-control" id="email" type="email" name="email" placeholder="Your Email *" required>
<div class="invalid-feedback" data-sb-feedback="email:required">
An email is required.
</div>
<div class="invalid-feedback" data-sb-feedback="email:email">
Email is not valid.
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group form-group-textarea mb-md-0">
<!-- Message input -->
<textarea class="form-control" id="message" name="message" placeholder="Your Message *" required></textarea>
<div class="invalid-feedback" data-sb-feedback="message:required">
A message is required.
</div>
</div>
</div>
</div>
<button type="submit" class="btn btn-primary">Submit Form</button>
</form>
</section>
<!-- Footer-->
<footer class="footer py-4">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-4 text-lg-start">
Copyright © CSM Computer Science Club 2024
</div>
<div class="col-lg-4 my-3 my-lg-0 d-flex justify-content-center">
<a class="btn btn-dark btn-social mx-2 " href="https://www.instagram.com/csmcompsci/" target="_blank" aria-label="Instagram">
<i class="fab fa-instagram"></i>
</a>
<a class="btn btn-dark btn-social mx-2 " href="https://discord.gg/Xhb8mZuZEm" target="_blank" aria-label="Discord">
<i class="fab fa-discord"></i>
</a>
<a class="btn btn-dark btn-social mx-2 " href="https://smccd.zoom.us/j/9684824696" target="_blank" aria-label="Zoom">
<i class="fas fa-solid fa-video"></i>
</a>
<a class="btn btn-dark btn-social mx-2 " href="https://github.com/CSM-Computer-Science" target="_blank" aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
</div>
<div class="col-lg-4 text-lg-end">
<a class="link-dark text-decoration-none me-3" href="#">Privacy Policy</a>
<a class="link-dark text-decoration-none" href="#">Terms of Use</a>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="scripts.js"></script>
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<!-- * * SB Forms JS * *-->
<!-- * * Activate your form at https://startbootstrap.com/solution/contact-forms * *-->
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script>
<script>
window.addEventListener('DOMContentLoaded', (event) => {
// Your existing code...
// Collapse navbar when menu button is clicked
const navbarToggler = document.body.querySelector('.navbar-toggler');
const navbarResponsive = document.body.querySelector('#navbarResponsive');
navbarToggler.addEventListener('click', () => {
if (navbarResponsive.classList.contains('show')) {
navbarResponsive.classList.remove('show');
} else {
navbarResponsive.classList.add('show');
}
});
});
</script>
<script src="https://www.gstatic.com/dialogflow-console/fast/messenger/bootstrap.js?v=1"></script>
<df-messenger
intent="WELCOME"
chat-title="Rival"
agent-id="4422c09e-34d7-46cf-94a5-d02db4b05da5"
language-code="en"
></df-messenger>
</body>
</html>