-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·2336 lines (2126 loc) · 98.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
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<link href="assets/css/fontawesome.min.css" rel="stylesheet" />
<link href="assets/css/brands.min.css" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="keywords" content="">
<meta property=”og:title” content=”Hack(H)er413” />
<meta property=”og:image” content="https://www.hackher413.com/assets/images/2024/full_logo.png" />
<!--script
id="mcjs">!function (c, h, i, m, p) { m = c.createElement(h), p = c.getElementsByTagName(h)[0], m.async = 1, m.src = i, p.parentNode.insertBefore(m, p) }(document, "script", "https://chimpstatic.com/mcjs-connected/js/users/6c4144b39d9809691e1bafe95/208c90e48cc6db4d337c8fe34.js");</script-->
<title>Hack(H)er413</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/hackher2025.css">
<!-- Favicons -->
<link rel="icon" href="assets/images/2025_logo/favicon.ico">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=News+Cycle" rel="stylesheet">
<link rel="stylesheet" href="https://use.typekit.net/zne2lgk.css">
<!-- Icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<!-- Vendors -->
<link rel="stylesheet" href="assets/vendors/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="assets/vendors/lightbox/simpleLightbox.css">
<link rel="stylesheet" href="assets/vendors/nice-select/css/nice-select.css">
<link rel="stylesheet" href="assets/vendors/animate-css/animate.css">
<link rel="stylesheet" href="assets/vendors/flaticon/flaticon.css">
<link rel="stylesheet" href="assets/vendors/linericon/style.css">
<script>
document.onreadystatechange = function () {
if (document.readyState !== "complete") {
document.querySelector("body").style.visibility = "hidden";
document.querySelector("body").style.overflow = "hidden";
document.querySelector("#loader").style.visibility = "visible";
} else {
document.querySelector("body").style.visibility = "visible";
document.querySelector("#loader").style.display = "none";
document.querySelector("body").style.overflow = "";
}
}
// Display the modal immediately on page load
window.onload = function() {
document.getElementById("modal").style.display = "flex";
};
// Close the modal
function closeModal() {
document.getElementById("modal").style.display = "none";
}
</script>
</head>
<body>
<a id="mlh-trust-badge"
style="display:block;max-width:100px;min-width:80px;position:fixed;right:100px;top:0;width:20%;z-index:10000" href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2025-season&utm_content=black" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2025/mlh-trust-badge-2025-black.svg" alt="Major League Hacking 2025 Hackathon Season" style="width:100%"></a>
<!-- <a id="mlh-trust-badge"
style="display:block;max-width:100px;min-width:80px;position:fixed;right:100px;top:0;width:20%;z-index:10000"
href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2024-season&utm_content=grey"
target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2024/mlh-trust-badge-2024-gray.svg"
alt="Major League Hacking 2024 Hackathon Season" style="width:100%"></a> -->
<!--<a id="pinnacle-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:200px;top:70px;width:10%;z-index:10000" href="https://pinnacle.us.org/" target="_blank"><img src="assets/images/partners/pinnacle_badge.png" alt="Pinnacle" style="width:100%"></a> -->
<div class="loader-container" id="loader">
<span class="loader">Load ng</span>
</div>
<nav class="navbar fixed-top navbar-expand-lg custom-nav">
<a class="navbar-brand" href="https://www.hackher413.com">
<img src="assets/images/2025_logo/2025_black _logo.png" width="80" alt="HackHer413">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02"
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<div>Menu</div>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link custom-nav" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link custom-nav" href="#involved">Get Involved</a>
</li>
<li class="nav-item">
<a class="nav-link custom-nav" href="#hackher-experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link custom-nav" href="#contributors-section-hexagons">Our Sponsors</a>
</li>
<li class="nav-item">
<a class="nav-link custom-nav" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link custom-nav" href="#team">Our Team</a>
</li>
</ul>
<ul class="navbar-nav justify-content-end">
<!-- <li class="nav-item right" style="margin-right: 120px;">
<a class="nav-link custom-nav" href="https://dashboard.hackher413.com/apply"><button
class="btn btn-outline-dark" type="button">Apply Now</button></a>
</li> -->
<li class="nav-item right">
<a class="nav-link custom-nav" href="https://dashboard.hackher413.com/apply"><button class="btn btn-outline-dark"
type="button">Apply</button></a>
</li>
</ul>
</div>
</nav>
<!-- pop up for applications -->
<!-- <div class = "popup">
<img src="assets\images\2025_logo\2025_bee.png" height="142px" width="142px">
<h2>Applications now OPEN!</h2>
<button type="button" class="applyButton">APPLY NOW</button>
<button type="button" class="cancelButton"></button>
</div> -->
<!-- testing code -->
<!-- Popup code -->
<!-- <div id="modal" class="modal">
<div class="modal-content-popup" width="200px">
<div>
<img class="apply-popup-img" src="assets\images\2025_logo\2025_bee.png" height="142px" width="142px">
</div>
<h2>Applications now OPEN!</h2>
<div>
<button class="apply-popup" onclick="window.location.href='https://dashboard.hackher413.com/';">APPLY NOW</button>
</div>
<div>
<button class="close-btn" onclick="closeModal()">Close</button>
</div>
</div>
</div> -->
<div class="landing">
<div id="jsi-hex-container"></div>
<div class="headings" id="textshadow">
<div class="image-crop mx-auto">
<!--img src="assets/images/2024/full_logo.png" width = "550" height = "550" alt="HackHer413 2024 Logo" style="clip: rect(0px, 350px, 10px, 0px);"-->
<div class="image-bee" style="background-image: url('assets/images/2025_logo/2025_black _logo.png');"></div>
</div>
<div class="icon text-center pb-4" id="lab_social_icon_footer">
<a href="https://www.facebook.com/HackHer413/"><i class="fab fa-facebook-f social"></i></a>
<a href="https://twitter.com/@hackher413"><i class="fab fa-twitter social"></i></a>
<a href="https://www.linkedin.com/company/hackher413/"><i class="fa-brands fa-linkedin social"
style="font-size: 40px"></i></a>
<a href="https://www.instagram.com/hackher413/"><i class="fab fa-instagram social"></i></a>
<!-- <a href="https://www.tiktok.com/@hackher413"><i class="fa-brands fa-tiktok larger-icon social"></i></a> -->
<a href="https://discord.gg/RkaCr7Y9"><i class="fab fa-discord social"></i></a>
</div>
<!--h2 class="typo-list">February 25th & 26th, 2023</h2-->
<div>
<a href="https://drive.google.com/drive/folders/1ZMJTKW_DSc056xKnbdFfisaAm6nEyBRU?usp=sharing">
<button class="Btn mx-auto" type="button">Check out last year's photos!</button>
</a>
</div>
<div>
<div class="d-flex justify-content-center">
<!-- <a href="https://forms.gle/poQXS3EbA5yZXK4g6">
<button type="button" class="btn btn-link text-white">Volunteer Applications</button></a>
<a href="http://eepurl.com/dFInwz">
<button type="button" class="btn btn-link text-white">Subscribe to Mailing List</button></a>
<a href="https://forms.gle/qXEZNZUTkZU9XmMf7">
<button type="button" class="btn btn-link text-white">Mentor Applications</button></a> -->
<div class="p-2">
<a href="https://forms.gle/YmY38wRxLSWWFQkKA">
<button type="button" class="Mail">Subscribe to Mailing List</button></a>
</div>
</div>
</div>
<!-- <a href="https://forms.gle/poQXS3EbA5yZXK4g6"><button class="AnotherBtn"
type="button">Volunteer Applications</button></a>
<a href="https://forms.gle/qXEZNZUTkZU9XmMf7"><button class="YetAnotherBtn" style="padding-bottom: 2%; padding-top: 2%"
type="button">Mentor Applications</button></a>
<a class="nav-link" href="http://eepurl.com/dFInwz">
<button class="btn-secondary" style="padding-bottom: 2%; padding-top: 2%" type="button">Subscribe</button>
</a> -->
</div>
<!-- <a href="schedule.html"><button class="button">Check out our schedule!</button></a> -->
</div>
<!-- ABOUT -->
<section id="about" class="whitebg" style="padding-bottom: 2%; padding-top: 2%">
<!-- <h1 class="about-heading">The first women (cis and trans) and non-binary student empowering hackathon in Western
Massachusetts.</h1> -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 col-lg-6">
<!-- Paragraph 1 -->
<p class="about-para">
Our 2025 Hackathon is coming up soon! Stay tuned for more information on the schedule, events, and prizes!
</p>
<p class="about-para">
Over the course of 24 hours, hackathon participants are encouraged to learn and develop new technical
skills, network with sponsor company representatives, and innovate with passion.
</p>
<!-- Paragraph 2 -->
<p class="about-para">
This hackathon is entirely student organized and aims to increase diversity and inclusion in the technology
industry. <!--Our annual hackathon will be entirely in person, with events being held on February 17th and
18th, 2024. -->
</p>
<!-- Anti-Racism Statement-->
<!-- <p class="about-para-state">
In the wake of recent racist incidents on campus, Hack(H)er413 stands in support of Black students. Read our
statement
<a target="_blank" href="assets/HH_antiracism_statement.pdf">here</a>.
</p> -->
<!-- <div class="icon text-center pb-4" id="lab_social_icon_footer">
<a href="https://www.facebook.com/HackHer413/"><i class="fab fa-facebook-square fa-2x social"></i></a>
<a href="https://twitter.com/@hackher413"><i class="fab fa-twitter fa-2x social"></i></a>
<a href="https://www.instagram.com/hackher413/"><i class="fab fa-instagram fa-2x social"></i></a>
<a href="https://www.linkedin.com/company/hackher413/"><i class="fab fa-linkedin fa-2x social"></i></a>
</div> -->
<div class="row">
<div class="col-md-4 col-sm-12">
<div class="wel_item">
<i class="lnr lnr-users"></i>
<h4>400+</h4>
<p>Attendees</p>
</div>
</div>
<div class="col-md-4 col-sm-12">
<div class="wel_item">
<i class="lnr lnr-database"></i>
<h4>25+</h4>
<p>Sponsor Companies</p>
</div>
</div>
<div class="col-md-4 col-sm-12">
<div class="wel_item">
<i class="lnr lnr-clock"></i>
<h4>24</h4>
<p>Hours</p>
</div>
</div>
</div>
</div>
<div class="text-right">
<div class="col-sm-12 col-lg-5 img-fluid"> <iframe width="480" height="430"
src="https://www.youtube.com/embed/xo6z2kOO58E" frameborder="0"
allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> </div>
</div>
</div>
</div>
</section>
<!-- GRACE HOPPER -->
<section id="hopper" class="whitebg" style="padding-top: 0">
<div class="container-fluid">
<div class="row">
<div class="text-left col-lg-8 img-fluid">
<iframe width=70% height="430" src="https://www.youtube.com/embed/Px89_HFHjYQ" frameborder="0"
allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="col-lg-4">
<img class="mx-auto d-block img-fluid" src="assets/images/logos/gh_logo.png">
<h1 class="about-heading"><b>Hack(H)er413 at Grace Hopper 2021</b></h1>
<p class="hopper-para">
Thank you to the leaders of Grace Hopper for featuring Hack(H)er413. Take a look at the video that was shown
at the conference!
</p>
</div>
</div>
</div>
</section>
<!-- HACKATHON-INFO test -->
<section id="hackathon" class="darkbg">
<h2 class="darkbg-heading"> What is a Hackathon?</h2>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 col-lg-12">
<p class="h5 darkbg-para">
<i> hak-uh-thon • noun </i>
</p>
</div>
<div class="col-sm-12 col-lg-12">
<p class="h5 darkbg-para"> This hackathon is a 24-hour technology marathon where participants form teams to
collaborate in creating unique programming or hardware projects to present to a panel of judges and win
prizes while attending workshops, fun mini-events, and collecting awesome swag.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-laptop-code text-white mb-4"></i>
<h3 class="mb-2 text-white">Learning and Exploring <br> New Technologies</h3>
<!-- <p class="text-white mb-0"> Participants have access to interactive workshops on areas including data science,
arduinos, artificial intelligence, product management, Python (and more) taught by industry
professionals and professors.</p> -->
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-briefcase text-white mb-4"></i>
<h3 class="mb-2 text-white">Career Development and Opportunities</h3>
<!-- <p class="mb-0 text-white"> Students are given the opportunity to participate in our career fair, interview
onsite with sponsor companies, network exclusively with company representatives, and attend career
development sessions. </p> -->
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-heart text-white mb-4"></i>
<h3 class="mb-2 text-white">Open to All Levels</h3>
<!-- <p class="mb-0 text-white">Hack(H)er413 is inclusive of all levels of computer science. We encourage
undergraduate, graduate, and Ph.D students to attend. Come write your first line of code with us, or come
show us all you know! </p> -->
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<i class="fas fa-4x fa-money-bill text-white mb-4"></i>
<h3 class="mb-2 text-white">Free of Cost for Admission</h3>
<!-- <p class="mb-0 text-white">This hackathon has free admission. Bring your passion, excitement, and thinking
caps!</p> -->
</div>
</div>
</div>
</section>
<!--schedule -->
<!-- <section class="schedule">
<div class="container" style="padding-top: 1em">
<h2 class="lightbg-heading">Schedule Highlights</h2>
<div class="row justify-content-center">
<div class="col-lg-5">
<ul class="main">
<li class="date">
<h3 class="schedule_date">Sat</h3>
<p>Schedule of Events</p>
</li>
<li class="events">
<ul class="events-detail">
<li class="events-detail">
<span class="event-time">8:00am - 10:00am </span>
<span class="event-name">Participant/Sponsor Check-In </span>
<br />
</li>
<li class="events-detail">
<span class="event-time">10:00am - 11:00am</span>
<span class="event-name">Opening Ceremony</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">11:00am - 11:30am</span>
<span class="event-name">Diversity Panel</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">11:30am - 1:00pm</span>
<span class="event-name">Career Fair</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">11:30am - 1:00pm</span>
<span class="event-name">Team Building Activity</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">1:00pm - 2:00pm</span>
<span class="event-name">Lunch</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">2:00pm - 6:00pm </span>
<span class="event-name">Workshops
</span>
<br />
</li>
<!--li class="events-detail">
<span class="event-time">3:00pm - 4:00pm </span>
<span class="event-name">Workshops</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">4:00pm - 5:00pm</span>
<span class="event-name">Workshops</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">5:00pm - 6:00pm </span>
<span class="event-name">Workshops </span>
<br />
</li-->
<!-- <li class="events-detail">
<span class="event-time">6:00pm - 7:00pm</span>
<span class="event-name">Dinner</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">7:00pm - 9:00pm</span>
<span class="event-name">Workshops</span>
<br /> -->
<!--/li>
<li class="events-detail">
<span class="event-time">8:00pm - 9:00pm</span>
<span class="event-name">Workshop</span>
<br />
</li-->
<!-- <li class="events-detail">
<span class="event-time">9:00pm</span>
<span class="event-name">Insomnia Cookies</span>
<br />
</li> -->
<!--li class="events-detail">
<span class="event-time">10:00pm</span>
<span class="event-name">Face Masks and Energy Drink</span>
<br />
</li-->
<!-- </ul>
</li>
</div>
<div class="col-lg-5">
<ul class="main">
<li class="date">
<h3 class="schedule_date">Sun</h3>
<li class="events">
<ul class="events-detail">
<li class="events-detail">
<span class="event-time">8:00am</span>
<span class="event-name">Breakfast</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">10:00am </span>
<span class="event-name">Soft Submission</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">11:00am</span>
<span class="event-name">Hard Submission</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">11:30am</span>
<span class="event-name">Lunch</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">12:00pm - 3:30pm</span>
<span class="event-name">Judging</span>
<br />
</li> -->
<!--li class="events-detail">
<span class="event-time">2:00pm - 3:00pm</span>
<span class="event-name">Judging #2</span>
<br />
</li>
<li class="events-detail">
<span class="event-time">3:00pm - 3:30pm</span>
<span class="event-name">Judges Deliberation</span>
<br />
</li-->
<!-- <li class="events-detail">
<span class="event-time">3:30pm - 4:30pm</span>
<span class="event-name">Closing Ceremony</span>
<br />
</li>
</ul>
</li>
</li>
</div> -->
</div>
</div>
</section> -->
<!--/ul>
</li>
</ul>
</div>
<div class="col-lg-5">
<ul class="main">
<li class="date">
<h3 class="schedule_date">Sun</h3>
<p>Schedule of Events</p>
</li>
<li class="events">
<ul class="events-detail">
<li class="events-detail">
<span class="event-time">8:00am - </span>
<span class="event-name">Breakfast</span>
<br/>
</li>
<li class="events-detail">
<span class="event-time">10:00am - </span>
<span class="event-name">Submissions Due</span>
<br/>
</li>
<li class="events-detail">
<span class="event-time">11:00am - </span>
<span class="event-name">Judging</span>
<br/>
</li>
<li class="events-detail">
<span class="event-time">11:30am - </span>
<span class="event-name"> Lunch</span>
<br/-->
<!--/li>
<li class="events-detail">
<span class="event-time">2:00pm - </span>
<span class="event-name">Closing Ceremony</span>
<br/>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div
</section>
<!-- Keynote Speaker-->
<!-- <section id="keynote" class="whitebg" style="padding-top: 0;">
<div class="container-fluid">
<h1 class="lightbg-heading" style="font-weight: bold;">Dr. Rati Thanawala</h1>
<h2 class="lightbg-heading" style="padding-bottom:.5em">Our 2022 Keynote Speaker!</h2>
<div class="row">
<div class="col-4 img-fluid"> -->
<!-- <img class="mx-auto d-block img-fluid" src="assets/images/logos/gh_logo.png"> -->
<!-- <div class="blockquote-wrapper" style="padding-top: .5em; padding-bottom: 4.5em;">
<div class="blockquote">
<img class="mx-auto d-block img-fluid" style="max-height: 300px" src="assets/images/workshops/rati.jpeg">
</div>
</div>
</div>
<div class="col-lg-8">
<p class="hopper-para" style="padding-top:0">
Dr. Thanawala is a Fellow at the Harvard Kennedy School. She has a Ph.D. in Computer Science from Yale
University. In her 39-year career in the tech industry, the last 17 as a Vice President at Bell Labs, she has
consistently broken new ground in the introduction of new technologies. She founded Bell Labs
Consulting, a business unit within Bell Labs, that advises tech executives, globally, on building future
communication networks. She has held executive positions in software development and product
management at companies including AT&T, Lucent, and Nokia.<br> <br>
Dr. Thanawala received a grant from the Women of Color in Computing Collaborative, funded by a
Melinda Gates company. From her research, she developed “14 Levers” that, if mastered early by
undergraduate and graduate students, will give them an increased ability to thrive in internships and
early careers in tech. Dr. Thanawala established a multiyear curriculum for a Leadership Academy. The
Leadership Academy was launched with two partners, the University of Massachusetts, and Harvard
University. The program is virtual and welcomes students nationally. Last year students from 22 colleges
participated in the six-week summer academy, and almost all students also enrolled in the unique
industry mentorship program for the 9 months following the summer academy. In the last two years, 87
students have gone through the program. </p>
</div>
</div>
</div>
</section> -->
<section id = "prizes">
<div class = "container">
<br>
<h2 class="lightbg-heading" style="text-align: center">Last Year's Prizes!</h2>
<div class="cards-list">
<div class="cardfr 1">
<div class="card_image"> <img src="assets/images/2025/team-members/apwatch.png" /> </div>
<div class="card_title title-white">
<p style = "color:rgb(245, 239, 239); text-shadow:1px 1px 10px #b06c6c, 1px 1px 10px #aa7e7e;" >Best Software Hack</p>
<p style = " color:rgb(241, 237, 237); font-size: 15px; margin-top: -7%; text-shadow:1px 1px 10px #838080, 1px 1px 10px #706d6d;"> Apple Watch SE (2nd Gen) </p>
</div>
</div>
<div class="cardfr 1">
<div class="card_image"> <img src="assets/images/2025/team-members/raspi.png" /> </div>
<div class="card_title title-white">
<p style = "color:rgb(249, 253, 250); text-shadow:1px 1px 10px #a8829a, 1px 1px 10px #699c85;">Best Hardware Hack</p>
<p style = " color:rgb(241, 237, 237); font-size: 15px; margin-top: -7%; text-shadow:1px 1px 10px #838080, 1px 1px 10px #706d6d;"> Raspberry Pi 4 </p>
</div>
</div>
<div class="cardfr 3">
<div class="card_image"> <img src="assets/images/2025/team-members/dot.png" />
</div>
<div class="card_title">
<p style = "color:rgb(240, 243, 246); text-shadow:1px 1px 10px #e8b2c8, 1px 1px 10px #58a0a8;">Best AI Hack</p>
<p style = " color:rgb(241, 237, 237); font-size: 15px; margin-top: -7%; text-shadow:1px 1px 10px #838080, 1px 1px 10px #706d6d;"> Echo Dot (5th Gen) </p>
</div>
</div>
<div class="cardfr 4">
<div class="card_image">
<img src="assets/images/2025/team-members/tablet.png" />
</div>
<div class="card_title title-black">
<p style = "color:rgb(240, 243, 246); text-shadow:1px 1px 10px #b78992, 1px 1px 10px #080808;">Best UI/UX</p>
<p style = " color:rgb(241, 237, 237); font-size: 15px; margin-top: -7%; text-shadow:1px 1px 10px #838080, 1px 1px 10px #706d6d;"> XPPen Deco V2 Graphics Tablet</p>
</div>
</div>
<div class="cardfr 5">
<div class="card_image">
<img src="assets\images\misc\output-onlinepngtools (1).png" />
</div>
<div class="card_title title-white">
<p style = "color:rgb(254, 252, 255); text-shadow:1px 1px 10px #c2abda, 1px 1px 10px #9c79e7;">Cutest Hack</p>
<p style = " color:rgb(241, 237, 237); font-size: 15px; margin-top: -7%; text-shadow:1px 1px 10px #838080, 1px 1px 10px #706d6d;"> Mini Projector</p>
</div>
</div>
<br>
<br>
<!--<h4 class="lightbg-heading" style="padding-top:1em;padding-bottom:1em;">These are just some of last year's prizes. <li class="list-inline-item">
<a href="https://dashboard.hackher413.com/prizes">
<i class="fas fa-arrow-right" style = "color: #8d5c74;"></i>
</a>
</li></h4>-->
</div>
</div>
</section>
<!--<section id="involved">
<div class="container">
<br>
<h2 class="lightbg-heading" style="text-align: center">Get Involved</h2>
<p class="lightbg-para"> We encourage all gender identities to get involved with Hack(H)er413
through
volunteering, mentoring, judging, recruiting or tabling with us! Unfortunately, this year's volunteer and mentor forms are closed. Check back next year to find out how you can
get involved!
<p>
<p> </p>
Marketing Icons Section
<div class="row">
<div class="col-lg-4 mb-4">
<div class="card h-100">
<h4 class="card-header">Student Ambassadors</h4>
<div class="card-body">
<p class="card-text">HackHer413 has student ambassadors from other universities represent HackHer413 on
their university campus.
</div>
<div class="card-footer">
<p style="color:#4F7344; font-size:1.2em;">More Information Coming Soon!</p>
</div>
</div>
</div> -->
<!--div class="col-lg-6">
<div class="card h-100">
<h4 class="card-header" style="color:#45A49B;text-emphasis: bold;">Be a Volunteer</h4>
<div class="card-body">
<p class="card-text">Volunteer to help with briefing sponsors, checking in
participants, and supporting the hackathon. </p>
</div>
<div class="card-footer">
<a style="color:#45A49B; font-size:1.2em;" href="https://forms.gle/poQXS3EbA5yZXK4g6">
Click Here to Apply!</a>
</div>
</div>
</div-->
<!--div class="col-lg-6">
<div class="card h-100">
<h4 class="card-header" style="color:#45A49B;text-emphasis: bold;">Technical Mentors</h4>
<div class="card-body">
<p class="card-text">Help students with their passion projects by supporting
them both technically and surrounding product.</p>
</div>
<div class="card-footer">
<a style="color:#45A49B; font-size:1.2em;" href="https://forms.gle/qXEZNZUTkZU9XmMf7">
Click Here to Apply!</a>
</div>
</div>
</div
</div>
</div>
<br>
</section>
-->
<!-- Last Year -->
<section class="last-year">
<h2 class="darkbg-heading">A Look Back to Hack(H)er413 in 2024</h2>
<div class="container">
<div class="last-year-content">
<div class="row">
<div class="col-lg-6">
<ul class="darkbg-para last-year-facts">
<li>400+ participants, sponsors, and volunteers</li>
<li>80+ different universities / colleges</li>
<li>19 different countries</li>
<li>45 different majors - students from computer science, mathematics, biological sciences,
business,
economics, engineering,
humanities & fine arts, and other fields!</li>
<li>For 88 students, it was their first time attending a hackathon</li>
<li>36 attendees had attended 3 or more hackathons before Hack(H)er413 2023</li>
<li>30+ projects submitted!</li>
</ul>
<br>
<!-- <a target="_blank" href="https://www.hackher413.com/2020"><span
class="highlight">Check Out Last Year's Event!</span></a> -->
</div>
<div class="col-lg-6 img-fluid last-year-right" style="padding-top:1em">
<!-- <img class="last-year-pic" src="assets/images/2022/travellers_opening_slide.png" /> -->
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="4"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="5"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="6"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="7"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="8"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="assets/images/2023/23pic1.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/images/2023/23pic2.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/images/2023/23pic3.jpg" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/images/2023/23pic4.jpg" alt="Fourth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/images/2023/23pic5.jpg" alt="Fifth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/images/2023/23pic6.jpg" alt="Sixth slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/images/2023/23pic7.jpg" alt="Seventh slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/images/2023/23pic8.jpg" alt="Eighth slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- HIGHLIGHTS -->
<section id="hackher-experience" class="greybg">
<h2 class="lightbg-heading">The Hack(H)er413 Experience</h2>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 col-lg-12">
<p class="h5 lightbg-para"> Our mission is to create a welcoming and inclusive environment for
all women (cis
and trans) and non-binary empowering students of all ethnic, gender, socioeconomic, and
educational
backgrounds and
identities to come innovate, learn, and feel safe while doing so! </p>
<br>
</div>
</div>
<div class="feature_inner row">
<div class="col-lg-3 col-md-6">
<div class="feature_item">
<img class="img-circle" src="assets/images/experience/1.jpeg" alt="Image"> <br>
<h4>Attend Workshops with Professors and Industry</h4>
<p>Sponsors conduct interactive workshops on industry topics,
professors deliver talks in their specialized areas.</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="feature_item">
<img class="img-circle" src="assets/images/experience/2.jpeg" alt="Image"> <br>
<h4>Land an Internship or Full-Time Offer at our Career Fair</h4>
<p>Sponsors seek interns and hires through Hack(H)er413, so bring your resume and pitch!</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="feature_item">
<img class="img-circle" src="assets/images/experience/3.jpeg" alt="Image"> <br>
<h4>Brainstorm, Collaborate, Create, to Win an Award </h4>
<p>Team-forming events, mentors, abundance of hardware, and an API directory for your winning
hack!</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="feature_item">
<img class="img-circle" src="assets/images/experience/4.jpeg" alt="Image"> <br>
<h4>Network with Industry Reps in "Coffee with Mentors" </h4>
<p>Our low sponsor-to-attendee ratio ensures one-on-one
networking + valuable learning from industry reps.</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="feature_item">
<img class="img-circle" src="assets/images/experience/5.jpeg" alt="Image"> <br>
<h4>Indulge in the #1 University Dining Halls in the U.S</h4>
<p>Attendees enjoy access to the #1-ranked Princeton Review Dining Halls at UMass Amherst.</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="feature_item">
<img class="img-circle" src="assets/images/experience/6.jpeg" alt="Image"> <br>
<h4> Engage in an interactive Diversity Panel</h4>
<p>Join our empowering Diversity Panel on women and non-binary leaders in tech.</p> <br>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="feature_item">
<img class="img-circle" src="assets/images/experience/7.jpeg" alt="Image"> <br>
<h4>Open to All Levels</h4>
<p>Inclusive for all coding levels with events designed around to include all levels!
</p> <br> <br>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="feature_item">
<img class="img-circle" src="assets/images/experience/8.jpeg" alt="Image"> <br>
<h4>Launch Your Start-Up or Product + Receive Funding</h4>
<p>Fun fact: The 2019 winners received $7,500 to launch their product and became hack CEOs!
</p>
</div>
</div>
</div>
</div>
</section>
<section id="involved">
<div class="container">
<br>
<h2 class="lightbg-heading" style="text-align: center">Get Involved</h2>
<p class="lightbg-para"> We encourage all gender identities to get involved with Hack(H)er413
through
volunteering, mentoring, judging, recruiting or tabling with us! Unfortunately, this year's volunteer and mentor forms are closed. Check back next year to find out how you can
get involved!
<p>
<br>
</section>
<section id="hackher-experience" class="greybg">
<h2 class="lightbg-heading2">Previous Projects</h2>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 col-lg-12">
<p class="h5 lightbg-para"> Take a look at some of 2023's project winners! </p>
<br>
</div>
</div>
<div class="feature_inner row">
<div class="col-sm-6">
<div class="feature_item">
<img class="img-sq" src="assets/images/projects/pots.png" alt="Image"> <br>
<h4>POTSpacer</h4>
<p>
<a href="https://github.com/cynthiaraj501/POTSpacer/tree/main"><i class="fab fa-github"></i></a>
The POTS (Postural Orthostatic Tachycardia Syndrome) Pacer is a wearable that measures body
temperature
and pulse to warn individuals of a POTS "attack."
</p>
</div>
</div>
<div class="col-sm-6">
<div class="feature_item">
<img class="img-sq" src="assets/images/projects/asl.jpeg" alt="Image"> <br>
<h4><a href="https://github.com/AnanyaShekhawat/Artificial-Sign-Language-ASL-">Artificial Sign
Language</a>
</h4>
<p>
<a href="https://github.com/AnanyaShekhawat/Artificial-Sign-Language-ASL-"><i
class="fab fa-github"></i></a>
The Artificial Sign Language uses AI to translate sign language into spoken words. This
technology has the
potential to break down communication barriers!
</p>
</div>
</div>
<div class="col-sm-6">
<div class="feature_item">
<img class="img-sq" src="assets/images/projects/Productibunny.png" alt="Image"> <br>
<h4><a href="https://github.com/mabuissa24/HackHER413-2023">ProductiBunny</a> </h4>
<p>
<a href="https://github.com/mabuissa24/HackHER413-2023"><i class="fab fa-github"></i></a>
We've made a Chrome extension that serves as a "productivity hub"!These include a simple to
do list and a
representation of the weather, temperature, and time.
</p>
</div>
</div>
<div class="col-sm-6">
<div class="feature_item">
<img class="img-sq" src="assets/images/projects/fitness.png" alt="Image"> <br>
<h4><a href="https://github.com/crowelladrianna/hackher2023">My(Non-Toxic)FitnessPal</a> </h4>
<p>
<a href="https://github.com/crowelladrianna/hackher2023""><i class=" fab fa-github"></i></a>
My(Non-Toxic)FitnessPal is a wellness application that de-emphasizes calories in tracking
nutrition,
fitness, and wellbeing. It allows you search and track meals that you eat throughout the
day.
</p>
</div>
</div>
<div class="col-sm-6">
<div class="feature_item">
<img class="img-sq" src="assets/images/projects/unwind.png" alt="Image"> <br>
<h4><a href="https://github.com/escapeprograms/unwind">Unwind</a> </h4>
<p>
<a href="https://github.com/escapeprograms/unwind"><i class="fab fa-github"></i></a>
Our website raises awareness about the importance of good posture to prevent health issues
like carpal
tunnel syndrome.
</p>
</div>
</div>
<div class="col-sm-6">
<div class="feature_item">
<img class="img-sq" src="assets/images/projects/boba.png" alt="Image"> <br>
<h4><a href="https://github.com/jordaeday/bouba-kiki-analyzer">Bouba-Kiki Analyzer</a> </h4>
<p>
<a href="https://github.com/jordaeday/bouba-kiki-analyzer"><i class="fab fa-github"></i></a>
It takes in the user input using the Bouba/Kiki principle in linguistics to determine how
"round" or
"spiky" the input is.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- SPEAKER -->
<!-- <section id="venue-speaker" class="whitebg">
<h2 class="lightbg-heading">Introducing Our Keynote Speaker</h2>
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-lg-6">