-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
686 lines (636 loc) · 25.3 KB
/
index.html
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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>CodeRED Odyssey Fall 2022 - Houston's Premier Hackathon</title>
<meta name="robots" content="index, follow" />
<meta charset="UTF-8" />
<link rel="icon" href="favicon2.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,500,600" />
<link rel="stylesheet" type="text/css" href="src/styles.scss" />
</head>
<body>
<div id="landing">
<div class="timer pt-3">
<p id="countdown">
<script>
var targetDateTime = new Date("Oct 29, 2022 12:00:00").getTime();
var x = setInterval(function() {
var current = new Date().getTime();
var difference = targetDateTime - current;
var days = Math.floor(difference / (1000 * 60 * 60 * 24));
var hours = Math.floor((difference % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((difference % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((difference % (1000 * 60)) / 1000);
document.getElementById("countdown").innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s REMAINING";
if (difference < 0) {
clearInterval(x);
document.getElementById("countdown").innerHTML = "<div>CHECK OUT OUR PREVIOUS EVENT (2021 CODERED ARTEMIS) <a href='https://codered-artemis-uh.devpost.com/?ref_feature=challenge&ref_medium=discover'>HERE</a></div>";
}
}, 1000);
</script>
</p>
</div>
<div class="landing-content">
<div class="event-info">
<a id="mlh-trust-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000" href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2023-season&utm_content=white" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2023/mlh-trust-badge-2023-white.svg" alt="Major League Hacking 2023 Hackathon Season" style="width:100%"></a>
<img id="logo" src="/assets/codered-odyssey.png" class ="img-fluid" loading="eager" alt="CodeRED Odyssey Logo"/>
<div class="info-line py-1">
<div class="float-left event-year decode-in p-0">Houston.TX.USA</div>
<div class="float-right column event-location decode-in p-0">2022</div>
</div>
<div class="display-none"> </div>
<div class="coming-soon">
<strong>
<span class="nls">Join us on<br> Oct 29th - 30th <br> 2022</span>
</strong>
</div>
<!--
<div class="coming-soon">
<strong>
<span class="nls">Registration Opens Soon!</span>
</strong>
</div>
-->
<a href="https://forms.gle/8fgQjgoaW8RSfy3T6" class="arrow-btn w-100 mt-2 m"
target="_blank"><span class="nls">Register to Participate </span></a>
<span class = "nls ml-3">Deadline: Oct 7th, 2022</span>
<a href="https://forms.gle/AUDFNxaUAii5kUg49" class="arrow-btn w-100 mt-2 m"
target="_blank"><span class="nls">Register to Volunteer</span></a>
<a href="https://devpost.com/hackathons?search=codered" class="arrow-btn w-100 mt-2 mb-2"
target="_blank"><span class="nls">Past Events</span></a>
<a href="#sponsors" class="arrow-btn w-100 mb-2 m"><span class="nls">Sponsors</span></a>
</div>
</div>
<div class="middle-gradient"></div>
<div id="background" class="background"></div>
<div class="gradient"></div>
</div>
<div id="about" class="container">
<div class="row mt-4 pt-2">
<img id="album-cover" src="/assets/images/album-cover-optimized.png" class="img-fluid" loading="eager"
width="100%"
alt="Two people writing code on a computer, a person wearing a virutal reality headset, and people sitting on the floor writing code" />
</div>
<div class="row">
<h2 class="pt-4">
<span class="nls">
<h2 style="display: inline; text-transform: none;">Code</h2><span class="text-primary">RED</span>:
Houston's Premier<br />Innovation Experience
</span>
</h2>
<div class="mt-4 d-inline-flex questionTitle">
<strong>What is Code<span class="text-primary">RED</span>?</strong>
</div>
<div class="answer">
<p>
CodeRED is a <strong>24 hours hackathon</strong> event organized by CougarCS, the largest student-run computer science organization at the University of Houston. It's an event for people to come together and innovate by pushing their limits to create something amazing!
</p>
<p>
Want to learn something new, network with like-minded computer scientists, and push the boundaries of your skill? Come join us at CodeRED Odyssey to solve real-life problems, explore new possibilities, and shoot for the stars!
</p>
</div>
<div class="questionTitle">
<strong>Frequently Asked Questions</strong>
</div>
<div class="collapsible">Who can attend CodeRED?</div>
<div class="content">
<p>
All students and recent graduates are welcome. Since we are an MLH member event, participants must also accept the <a href = "https://static.mlh.io/docs/mlh-code-of-conduct.pdf"> <span class="text-primary">MLH Code of Conduct.</span></a>
</p>
</div>
<div class="collapsible">How long is CodeRED?</div>
<div class="content">
<p>
CodeRED Odyssey is 24-hours long. It's scheduled to be on October 29th - October 30th, 2022.
</p>
</div>
<div class="collapsible">When is the registration deadline for CodeRED Odyssey?</div>
<div class="content">
<p>
Registration deadline is on Friday, October 7th, 2022. Please make sure all your team members register before deadline so we can get a better participant count for logistical purposes.
</p>
</div>
<div class="collapsible">What do I need to bring?</div>
<div class="content">
<p>
Please bring a Student/Legal ID so our team can check you in during the event.
You will also need to bring your own computer. It is also recommended to bring a Connector Strip if you want!
</p>
</div>
<div class="collapsible">What if I am not experienced?</div>
<div class="content">
<p>
Don't worry! CodeRED is designed to be beginner friendly. We will be having plenty of resources, workshops and mentors
to point you in the right direction.
</p>
</div>
<div class="collapsible">How much does it cost?</div>
<div class="content">
<p>
Not a dollar! It's completely free. We'll be providing snacks, meals and drinks as well.
</p>
</div>
<div class="collapsible">What if I don't have a team?</div>
<div class="content">
<p>
That's pretty common, you'll have some time before and at the beginning of the event to meet other participants who are
looking for a team as well. We highly recommend that you team up with someone and make new friends.
</p>
</div>
<div class="collapsible">How big can a team be?</div>
<div class="content">
<p>
A team may have a maximum of 4 people, though you can go solo too.
</p>
</div>
<div class="collapsible">Is there swag?</div>
<div class="content">
<p>
We know Hackathons and swag go hand in hand like peanut butter and jelly so, of course there will be swag!
</p>
</div>
<div class="collapsible">Got more questions?</div>
<div class="content">
<p>
Feel free to reach out to us at <a href="mailto: hackathon@cougarcs.com" target="_blank"
rel="nofollow">hackathon@cougarcs.com</a>
or on <a href="https://www.instagram.com/codered_hou/" target="_blank" rel="nofollow">Instagram</a>/<a href="https://twitter.com/CodeRED_HOU" target="_blank" rel="nofollow">Twitter</a>
</p>
</div>
</div>
</div>
<br>
<!-- <div id="schedule" class="container">
<h2 class="pt-4 pb-0">
<span class="nls">Schedule</span>
</h2>
<div class="columns text-center pb-3" id="Saturday">
<div class="columnBox">
<h3 class="text-primary mt-2">Saturday</h3>
<li class="scheduleList">
<ul class="Saturday mt-3 mb-1">
<p class="p1">9:00 AM - 11:00 AM</p>
<p class="p2">Check-in / Networking</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">11:00 AM - 12:00 PM</p>
<p class="p2">Welcome Ceremony</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">12:00 PM</p>
<p class="p2">Hacking starts</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">12:30 PM - 1:30 PM</p>
<p class="p2">Hackathon 101 Workshop</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">1:45 PM - 2:45 PM</p>
<p class="p2">Basics of React Workshop</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">3:00 PM - 4:00 PM</p>
<p class="p2">Intro to API Workshop</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">4:15 PM - 5:15 PM</p>
<p class="p2">Visualizing data with HCSS</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">5:30 PM - 6:00 PM</p>
<p class="p2">Resume Review with ConocoPhillips</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">6:30 PM - 7:30 PM</p>
<p class="p2">Skribbl.io Social</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">8:30 PM - 9:30 PM</p>
<p class="p2">Painting Social</p>
</ul>
<ul class="Saturday mb-1">
<p class="p1">11:00 PM - 12:00 AM</p>
<p class="p2">WPM Race</p>
</ul>
</li>
</div>
<div class="columnBox">
<h3 class="text-primary mt-2">Sunday</h3>
<li class="scheduleList">
<ul class="Sunday mt-3 mb-1">
<p class="p1">2:00 AM - 3:00 AM</p>
<p class="p2">Valorant Free-For-All</p>
</ul>
<ul class="Sunday mb-1">
<p class="p1">12:00 PM</p>
<p class="p2">Hacking ends, Final submissions due</p>
</ul>
<ul class="Sunday mb-1">
<p class="p1">12:30 PM - 2:00 PM</p>
<p class="p2">Presentations and Judging</p>
</ul>
<ul class="Sunday mb-1">
<p class="p1">2:00 PM - 3:00 PM</p>
<p class="p2">Break</p>
</ul>
<ul class="Sunday mb-1">
<p class="p1">3:00 PM - 4:00 PM</p>
<p class="p2">Awards Ceremony</p>
</ul>
</li>
</div>
</div>
</div> -->
<br>
<div id="sponsors" class="container">
<div class="row text-center">
<h2 class="pt-4 pb-0"><span class="nls">Sponsors</span></h2>
<div class="container mt-2 mb-3">
<h3>
<span class="nls">
Our partnership with companies, nonprofits, and startups makes
Code<span class="text-primary">RED</span> outstanding.
</span>
</h3>
<div class="w-100" style="margin-top: 4rem;">
<a href="https://www.conocophillips.com/" target="_blank">
<img
src="assets/sponsors/cplogo_red-white.png"
loading="lazy"
class="sponsor1"
/>
</a>
</div>
<div class="w-100" style="margin-top: 2rem;">
<a href="https://www.pros.com/" target="_blank">
<img
src="assets/sponsors/pros.png"
loading="lazy"
class="sponsor2"
style= "max-height: 90px; max-width: fit-content;"
/>
</a>
</div>
<div class="w-100" style="margin-top: 3rem;">
<a href="https://www.lyondellbasell.com/" target="_blank">
<img
src="assets/sponsors/LB.webp"
loading="lazy"
class="sponsor2"
style= "max-height: 90px; max-width: fit-content;"
/>
</a>
</div>
<div class="w-100" style="margin-top: 3rem;">
<a href="https://meraki.cisco.com/" target="_blank">
<img
src="assets/sponsors/cisco-meraki.png"
loading="lazy"
class="sponsor2"
style= "max-height: 90px; max-width: fit-content;"
/>
</a>
</div>
<div class="mt-4 mb-4 sponsor-grid">
<div class="sponsor-in-grid">
<a href="https://cloud.google.com/" target="_blank">
<img
src="assets/sponsors/Google-Cloud.png"
loading="lazy"
width="95%"
/>
</a>
</div>
<div class="sponsor-in-grid">
<a href="https://www.echoar.xyz/?gclid=CjwKCAjwpMOIBhBAEiwAy5M6YNvxdy-cPGM01gFH4pmxWMVmwSlKgwuw9MDCbZDT5p9D47JDHX96OhoCxBwQAvD_BwE" target="_blank">
<img
src="assets/sponsors/echo3D.webp"
loading="lazy"
width="80%"
/>
</a>
</div>
</div>
<div class="mt-4 mb-4 sponsor-grid">
<div class="sponsor-in-grid">
<a href="https://www.digitalocean.com/" target="_blank">
<img
src="assets/sponsors/Digital Ocean.png"
loading="lazy"
width="90%"
/>
</a>
</div>
<div class="sponsor-in-grid " style = "margin-top: 22px;">
<a href="https://redbull.com" target="_blank">
<img
src="assets/sponsors/RedBull.png"
loading="lazy"
width="90%"
/>
</a>
</div>
</div>
<div class="w-100" style="margin-top: 3rem;">
<a href="https://www.standoutstickers.com/" target="_blank">
<img
src="assets/sponsors/standout.png"
loading="lazy"
class="sponsor2"
style= "max-height: 125px; max-width: fit-content;"
/>
</a>
</div>
</div>
<div id="sponsor-cloud" class="mt-4 w-100 text-center">
<div id="sponsor-pitch" class="px-5">
<h3>
<span class="nls">
Interested in becoming a sponsor?
</span>
</h3>
<p class="mb-2">
Without the support and incredible interaction between students,
mentors, and our partners, CodeRED would not be possible.
</p>
<p>
<strong>
Join us in accelerating the future of Houston's innovators<br />and
cultivating our world-class maker community.
</strong>
</p>
<a id="learn-more"
href="mailto: corporate.relations@uhcode.red"
class="arrow-btn btn-sm primary" target="_blank">Contact Us</a>
</div>
<div id="past-sponsors" alt="Past CodeRED Sponsors like Microsoft, Google, United, HCSS, and more">
</div>
</div>
</div>
</div>
<div id="team" class="container mt-4">
<h2 class="pt-4">
<span class="nls">OUR TEAM</span>
</h2>
<div class="mt-4 mb-2 team-members">
<div class="team-member">
<img src="assets/team/Ali Zain Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Ali Zain Charolia</p>
<p class="team-member-title mb-1">Director</p>
<a href="https://www.linkedin.com/in/alizaincharolia/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Aman Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Aman Surani</p>
<p class="team-member-title mb-1">Corporate Relations Director</p>
<a href="https://www.linkedin.com/in/amansurani/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Sana Bitmoji.jpg" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Sana Akbani</p>
<p class="team-member-title mb-1">Logistics Director</p>
<a href="https://www.linkedin.com/in/sana-akbani/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Giselle Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Giselle Ruiz</p>
<p class="team-member-title mb-1">Internal Affairs Director</p>
<a href="https://www.linkedin.com/in/giselleruiz/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Nathan Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Nathan Nguyen</p>
<p class="team-member-title mb-1">Marketing Director</p>
<a href="https://www.linkedin.com/in/nathvnguyen/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Ben Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Benjamin Key</p>
<p class="team-member-title mb-1">Corporate Relations Officer</p>
<a href="https://www.linkedin.com/in/benjamin-key-447197232/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Laney Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Laney Tran</p>
<p class="team-member-title mb-1">Corporate Relations Officer</p>
<a href="https://www.linkedin.com/in/laney-tran-a1579a151/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Rehman Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Rehman Essani</p>
<p class="team-member-title mb-1">Corporate Relations Officer</p>
<a href="https://www.linkedin.com/in/abdulrehmanessani/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Bryant Bitmoji.jpg" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Bryant Le</p>
<p class="team-member-title mb-1">Logistics Officer</p>
<a href="https://www.linkedin.com/in/bnle/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Fiza Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Fiza Gubitra</p>
<p class="team-member-title mb-1">Logistics Officer</p>
<a href="https://www.linkedin.com/in/fiza-gubitra-b590a6241/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Raunak Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Raunak Bose</p>
<p class="team-member-title mb-1">Logistics Officer</p>
<a href="https://www.linkedin.com/in/raunak-bose-56b0401a0/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Charity Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Charity Smith</p>
<p class="team-member-title mb-1">Logistics Officer</p>
<a href="https://www.linkedin.com" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Saifur Bitmoji.jpg" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Saifur Rehman</p>
<p class="team-member-title mb-1">Logistics Officer</p>
<a href="https://www.linkedin.com/in/ssaifurrehmann/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Alivia Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Alivia Souvanna</p>
<p class="team-member-title mb-1">Internal Affairs Officer</p>
<a href="https://www.linkedin.com/in/aliviasouvanna/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Genesis Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Genesis Alvarez</p>
<p class="team-member-title mb-1">Internal Affairs Officer</p>
<a href="https://www.linkedin.com/in/genesis-alvarez/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Chris Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Christopher Turcios</p>
<p class="team-member-title mb-1">Communications Officer</p>
<a href="https://www.linkedin.com/in/christopher-turcios/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Maryam Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Maryam Naeem</p>
<p class="team-member-title mb-1">Communications Officer</p>
<a href="https://www.linkedin.com/in/maryam-naeem-1442b1209/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Mihir Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Mihir Sahu</p>
<p class="team-member-title mb-1">Marketing Officer</p>
<a href="https://www.linkedin.com/in/the-mihir-sahu/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Johnny Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Johnny Le</p>
<p class="team-member-title mb-1">Marketing Officer</p>
<a href="https://www.linkedin.com/in/le-johnny/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Andrew Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Andrew Dieu</p>
<p class="team-member-title mb-1">Designer & Marketing Officer</p>
<a href="https://www.linkedin.com/in/andrewdieu/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
<div class="team-member">
<img src="assets/team/Rabimba Bitmoji.png" class="img-fluid team-image" />
<p class="mt-2 mb-0 person-name">Rabimba Karanjai</p>
<p class="team-member-title mb-1">Administrative Officer</p>
<a href="https://www.linkedin.com/in/rabimba/" target="_blank">
<img src="assets/icons/linkedin.png" width="15" />
</a>
</div>
</div>
</div>
<div id="partners" class="container">
<div class="row text-center">
<!-- <h2 class="pt-4 pb-0"><span class="nls">Partners</span></h2> -->
<h2 class="pt-4 pb-2">
<span class="nls">Organized by</span>
</h2>
<div class="w-100 col text-center">
<a href="https://cougarcs.com" target="_blank">
<img src="/assets/cougarcs-branding/cougarcs-logo.png" loading="lazy" width="300" alt="CougarCS Logo" />
<img src="/assets/cougarcs-branding/cougar.svg" loading="lazy" alt="Polygon cougar head" width="90"
class="pb-3" />
</a>
</div>
</div>
</div>
<div id="partners" class="container" style="margin-bottom: 45px;">
<div class="row text-center">
<!-- <h2 class="pt-4 pb-0"><span class="nls">Partners</span></h2> -->
<h2 class="pt-4 pb-4">
<span class="nls">Supported by</span>
</h2>
<div class="w-100 col text-center">
<a href="https://mlh.io" target="_blank">
<img src="/assets/partner-orgs/mlh-logo-color.png" loading="lazy" width="300" alt="MLH Logo" />
</a>
</div>
</div>
</div>
<div id="partners" class="container">
<div class="row text-center">
<!-- <h2 class="pt-4 pb-0"><span class="nls">Partners</span></h2> -->
<h2 class="pt-4 pb-4">
<span class="nls">Partners</span>
</h2>
<div class="w-100 col text-center">
<a href="https://www.uh.edu/nsm/" target="_blank">
<img src="/assets/partner-orgs/UHNSM.png" loading="lazy" width="300" alt="UH NSM Logo" />
</a>
</div>
</div>
</div>
<div id="partners" class="container mt-3">
<div class="row text-center">
<div class="w-100 col text-center mt-3">
<a href="https://www.codecoogs.com/" target="_blank">
<img src="/assets/partner-orgs/codecoogs.png" loading="lazy" width="300" alt="Code[Coogs] Logo" />
</a>
</div>
<div class="w-100 col text-center mt-3">
<a href="https://uhcougarettes.com/" target="_blank">
<img src="/assets/partner-orgs/cougarettes.png" loading="lazy" width="300" alt="Cougarettes Logo" />
</a>
</div>
</div>
</div>
<div id="partners" class="container">
<div class="row text-center">
<div class="w-100 col text-center mt-2">
<a href="/" >
<img src="/assets/partner-orgs/UHCL-ACM.png" loading="lazy" width="270" alt="UHCL ACM Logo" />
</a>
</div>
<div class="w-100 col text-center" style = "margin-top: 50px">
<a href="https://www.uhcl.edu/science-engineering/centers-initiatives/pathways/learning-community" target="_blank">
<img src="/assets/partner-orgs/UHCL-PSC.png" loading="lazy" width="300" alt="UHCL PSC Logo" />
</a>
</div>
</div>
</div>
<footer class="text-center py-5" style = "margin-top: -60px;">
<div class="footer-content">
<div style="margin-top: 50px;">
<span style="font-weight: bold">Follow us on: <br></span>
<a href="https://www.linkedin.com/company/coderedhou/"> <img src="/assets/icons/linkedInIcon.png" loading="lazy" alt="linkedIn png image" class="pb-3" width="40"></a>
<a href="https://www.instagram.com/codered_hou/"><img src="/assets/icons/instagram.png" loading="lazy" alt="instagram png image" class="pb-3"width="40"></a>
<a href="https://www.facebook.com/CodeREDHOUPage"> <img src="/assets/icons/facebook.png" loading="lazy" alt="facebook png image" class="pb-3" width="40"></a>
<a href="https://twitter.com/CodeRED_HOU"> <img src="/assets/icons/twitter.png" loading="lazy" alt="twitter png image" class="pb-3" width="40"></a>
</div>
<p class="mt-2" style="font-size: 20px">
Copyright © <a href="https://cougarcs.com/" target="_blank">CougarCS</a>
<script>document.write(new Date().getFullYear());</script>
</p>
</div>
<div id="footer-background" class="background"></div>
<div class="top-gradient"></div>
<div class="middle-gradient"></div>
</footer>
<script src="src/scripts/index.js"></script>
</body>
</html>