-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
958 lines (895 loc) · 42.7 KB
/
index.html
File metadata and controls
958 lines (895 loc) · 42.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HackHERS 2025</title>
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- JS -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous">
</script>
<script src="https://use.fontawesome.com/9f7b7f8456.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/trail.js" defer></script>
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/logos/text-logo-footer.png">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lunasima:wght@700&family=Montserrat:ital,wght@0,200;1,100&family=Mountains+of+Christmas:wght@400;700&family=Roboto:ital,wght@1,100&display=swap" rel="stylesheet">
</head>
<body>
<!--navbar-->
<div class="navbar-container">
<nav class="navbar navbar-expand-sm fixed-top" id="navbar">
<ul class="navbar-nav">
<li class="nav-item"><a href="#about" class="nav-link">About</a></li>
<li class="nav-item"><a href="#tracks" class="nav-link">Tracks</a></li>
<li class="nav-item"><a href="#schedule" class="nav-link">Schedule</a></li>
<li class="nav-item"><a href="#faq" class="nav-link">Faq</a></li>
<li class="nav-item"><a href="#sponsors" class="nav-link">Sponsors</a></li>
<li class="nav-item"><a href="#team" class="nav-link">Team</a></li>
</ul>
</nav>
</div>
<div class="dropdown">
<button class="dropbtn">Menu</button>
<div id = "myDropdown" class="dropdown-content">
<li class="drop-item"><a href="#about" class="drop-link">About</a></li>
<li class="drop-item"><a href="#tracks" class="drop-link">Tracks</a></li>
<li class="drop-item"><a href="#schedule" class="drop-link">Schedule</a></li>
<li class="drop-item"><a href="#faq" class="drop-link">Faq</a></li>
<li class="drop-item"><a href="#sponsors" class="drop-link">Sponsors</a></li>
<li class="drop-item"><a href="#team" class="drop-link">Team</a></li>
</div>
</div>
</div>
<div id="main">
<!-- TITLE -->
<div class="section" id="title">
<h1 id="title-name"> HackHERS </h1>
<h3 id="title-date"> Feb 8-9th, 2025</h3>
<h3 id="title-location"> College Avenue Student Center</h3>
<a id="title-register" href="https://docs.google.com/forms/d/e/1FAIpQLScbiZE4AcM0PCgCAaTAOCfrokwIvM5QDzA31RGNEqt2qxznZg/viewform" class="nav-link register-btn">Register</a>
</div>
<!-- ABOUT -->
<div class="section" id="about">
<div class="dino-container">
<div class="floating-image">
<img src="images/graphics/dinofairy.png" alt="Dino Fairy" class="dino-image">
</div>
</div>
<div id="about-info">
<h1 class="section-title">About</h1>
<div class="paragraph-container">
<p id = "paragraph">
<b class="highlight">HackHERS</b> is Rutgers <b class="highlight">Women in Computer Science’s</b> annual <b class="highlight">24 hour hackathon</b>. Our mission is to support and nurture women* in tech by hosting Rutgers' premiere hackathon addressing issues of the gender gap in technology. Expect a weekend full of workshops, mentorship, tech talks, social activities, and more!
</p>
</div>
<h2 id="since-2015"> Since 2015 We've Had...</h2>
<div class="stats-container">
<div class="stats-column">
<h2 class="counter" data-target="1600">0</h2>
<p id = "name">Hackers</p>
</div>
<div class="stats-column">
<h2 class="counter" data-target="26000" data-prefix="$">$26k+</h2>
<p id = "name">in Prizes</p>
</div>
<div class="stats-column">
<h2 class="counter" data-target="10">10</h2>
<p id = "name">HackHERS</p>
</div>
</div>
</div>
</div>
</div>
<!-- TRACKS -->
<div class = "section" id="tracks">
<h1 class="section-title">Tracks</h1>
<h4 id = "choose-your-char" > <b>Choose your Character: </b></h4>
<div class="container">
<div class="track">
<div class="image-container">
<img src="images/graphics/dinofairy.png" alt="Fairy" class="character-image">
</div>
<h3> AI & Analytics</h3>
<p>The fairies are known for their magical ingenuity! Join their quest to harness the power of <b class="highlight">AI</b>, <b class="highlight">machine learning</b>, or <b class="highlight">data science</b> to invent the future.</p>
</div>
<div class="track">
<div class="image-container">
<img src="images/graphics/witch.png" alt="Witch" class="character-image">
</div>
<h3> Social Good</h3>
<p>Step into the witch's workshop, where every spell is designed to make the world a better place. Use your talents to create solutions to <b class="highlight">social issues</b>, <b class="highlight">education</b>, <b class="highlight">healthcare</b>, or <b class="highlight">sustainability</b>.</p>
</div>
<div class="track">
<div class="image-container">
<img src="images/graphics/wolf.png" alt="Wolf" class="character-image">
</div>
<h3>Arts & Media</h3>
<p>The werewolves are mysterious crafters of worlds and stories. Use your skills to create cool <b class="highlight">animations</b>, <b class="highlight">games</b>, or <b class="highlight">AR/VR experiences</b> that bring their wild and untamed fairytales to life.</p>
</div>
<div class="track">
<div class="image-container">
<img src="images/graphics/knight.png" alt="Knight" class="character-image">
</div>
<h3>Financial Solutions</h3>
<p>The knights are not just protectors – they are strategists and innovators! Create <b class="highlight">fintech solutions</b> that address everyday financial challenges and empower users.</p>
</div>
</div>
</div>
<!-- SCHEDULE -->
<div class="section" id="schedule">
<h1 class="section-title">Schedule</h1>
<div id="schedule-content">
<!-- Saturday Column -->
<div class="schedule-column">
<h2 class="schedule-date">Saturday, Feb 8</h2>
<div class="schedule-row">
<div class="schedule-time">10:30 AM</div>
<div class="schedule-event">Participant Check In</div>
<div class="schedule-location">CASC Lounge</div>
</div>
<div class="schedule-row">
<div class="schedule-time">11:30 AM</div>
<div class="schedule-event">Opening Ceremony</div>
<div class="schedule-location">CASC MPR</div>
</div>
<div class="schedule-row">
<div class="schedule-time">12:30 PM</div>
<div class="schedule-event">Team Building</div>
<div class="schedule-location">CASC MPR</div>
</div>
<div class="schedule-row">
<div class="schedule-time">1:00 PM</div>
<div class="schedule-event">Hacking Start!</div>
<div class="schedule-location"></div>
</div>
<div class="schedule-row">
<div class="schedule-time">1:00 PM</div>
<div class="schedule-event">Lunch</div>
<div class="schedule-location">CASC Lounge</div>
</div>
<div class="schedule-row">
<div class="schedule-time">1:30 PM</div>
<div class="schedule-event"><b>ADP</b> The Basics of API Requests and Responses</div>
<div class="schedule-location">CASC Room 411</div>
</div>
<div class="schedule-row">
<div class="schedule-time">2:00 PM</div>
<div class="schedule-event"><b>UKG</b> Choosing a Technical Side Project Workshop</div>
<div class="schedule-location">CASC Room 109</div>
</div>
<div class="schedule-row">
<div class="schedule-time">2:30 PM</div>
<div class="schedule-event"><b>TD Bank</b> Career Readiness (Resume + Interview Prep)</div>
<div class="schedule-location">CASC Room 411</div>
</div>
<div class="schedule-row">
<div class="schedule-time">3:30 PM</div>
<div class="schedule-event"><b>Fiserv</b> Tech, Tales, & Tips</div>
<div class="schedule-location">CASC Room 109</div>
</div>
<div class="schedule-row">
<div class="schedule-time">5:00 PM</div>
<div class="schedule-event"><b>Lockheed Martin</b> Chat with a LM Engineer</div>
<div class="schedule-location">CASC Room 109</div>
</div>
<div class="schedule-row">
<div class="schedule-time">5:30 PM</div>
<div class="schedule-event"><b>WiCS</b> Bob Ross Painting</div>
<div class="schedule-location">CASC Room 411</div>
</div>
<div class="schedule-row">
<div class="schedule-time">6:30 PM</div>
<div class="schedule-event">Dinner</div>
<div class="schedule-location">CASC Lounge</div>
</div>
<div class="schedule-row">
<div class="schedule-time">7:00 PM</div>
<div class="schedule-event"><b>MLH</b> Github Co-Pilot Essentials</div>
<div class="schedule-location">CASC Room 411</div>
</div>
<div class="schedule-row">
<div class="schedule-time">9:00 PM</div>
<div class="schedule-event"><b>RUMAD</b> Intro to Mobile Development</div>
<div class="schedule-location">CASC Room 411</div>
</div>
<div class="schedule-row">
<div class="schedule-time">10:00 PM</div>
<div class="schedule-event"><b>WiCS</b> Cup Stacking Competition!</div>
<div class="schedule-location">CASC Lounge</div>
</div>
<div class="schedule-row">
<div class="schedule-time">12:00 PM ~</div>
<div class="schedule-event">Special Surprise...</div>
<div class="schedule-location"></div>
</div>
</div>
<!-- Sunday Column -->
<div class="schedule-column">
<h2 class="schedule-date">Sunday, Feb 9</h2>
<div class="schedule-row">
<div class="schedule-time">10:00 AM</div>
<div class="schedule-event">Breakfast</div>
<div class="schedule-location">CASC Lounge</div>
</div>
<div class="schedule-row">
<div class="schedule-time">1:00 PM</div>
<div class="schedule-event">Submission Deadline</div>
<div class="schedule-location"></div>
</div>
<div class="schedule-row">
<div class="schedule-time">1:00 PM</div>
<div class="schedule-event">Lunch</div>
<div class="schedule-location">CASC Lounge</div>
</div>
<div class="schedule-row">
<div class="schedule-time">1:30 PM</div>
<div class="schedule-event">Late Submission Deadline</div>
<div class="schedule-location"></div>
</div>
<div class="schedule-row">
<div class="schedule-time">2:00 PM</div>
<div class="schedule-event">Judging</div>
<div class="schedule-location">CASC MPR</div>
</div>
<div class="schedule-row">
<div class="schedule-time">4:30 PM</div>
<div class="schedule-event">Closing Ceremony & Awards</div>
<div class="schedule-location">CASC MPR</div>
</div>
</div>
</div>
</div>
<!-- FAQ -->
<div class="section" id="faq">
<h1 class="section-title">Faqs</h1>
<h4 class="additional-questions"> For additional questions, email us at <a href="mailto:rutgers.hackhers@gmail.com" style="font-weight: bold; color: #9BBDEE;">rutgers.hackhers@gmail.com</a></h4>
<div id="faq-content">
<div class="faq-column">
<ul class="faq">
<li>
<h3 class="question"><img src="images/faq-icons/fairy.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;"> What is a women-centric hackathon?</h3>
<div class="answer">
HackHERS is a hackathon geared towards women. We allow people of all genders to participate because closing the gender gap in technology is an issue that everyone needs to partake in.
There are so many reasons why more women should be involved in tech, yet there are still barriers present to this day that contribute to underrepresentation. By organizing this event, we work to close this gender gap.
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/cinderella-shoe.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">I identify as a male—can I still attend?
</h3>
<div class="answer">
Yes! It is very important to us that all genders work together and build awesome projects!
However, please consider our mission statement before registering and know that by participating in our event, you pledge to follow our Code of Conduct.
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/frog-prince.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">Can I attend without coding experience?
</h3>
<div class="answer">
OF COURSE! A hackathon provides the perfect environment to learn how to code. As long as you have an open mind and are willing to learn, we guarantee you will get something out of it. We also tailor HackHERS to be beginner-friendly, so we will be providing workshops all throughout the day, and there will be volunteer and mentors ready to answer any questions you may have.
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/magic-wand.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">How do I apply?
</h3>
<div class="answer">
Applications for hackers will close a week before the event!!!
You can apply <a href = 'https://tinyurl.com/hackhers2025'>here!</a>.
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/tale.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">Does this cost money?
</h3>
<div class="answer">
Nope! Participating in HackHERS is free of cost.
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/orc.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">Where will HackHERS take place?
</h3>
<div class="answer">
HackHERS will take place on Saturday and Sunday at the College Avenue Student Center at Rutgers University, New Brunswick, NJ.
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/mushroom.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">Is there any parking available?
</h3>
<div class="answer">
If you are planning on driving, there will be event parking available. Non-Rutgers students may park at Lots 26, Lots 30 or College Avenue Deck.
A parking registration link will be sent out closer to the hackathon date. Until this form is completed, their vehicles are not registered and guests may receive a citation.
Special event parking and special event permits are only for visitors to the University which does not include free metered parking.
Rutgers students with registered vehicles are NOT allowed to park in these lots.
</div>
</li>
</ul>
</div>
<div class="faq-column">
<ul class="faq">
<li>
<h3 class="question"><img src="images/faq-icons/moon.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">How do teams work?
</h3>
<div class="answer">
At most teams can have 4 people. You can have your teammates in mind before the event, or you can find a team during our team formation activity before and after opening ceremony!
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/fairy2.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">Can I come if I am still in high school?
</h3>
<div class="answer">
Unfortunately, due to Rutgers policy, we cannot allow high schoolers to attend HackHERS :( However we will still encourage and support you to learn and build to your heart’s content on your own! You are more than welcome to email us and ask any questions about how to get started.
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/golden-egg.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">What about travel reimbursements?
</h3>
<div class="answer">
Unfortunately, due to Rutgers administration policy, we are unable to provide travel reimbursements or buses to HackHERS. We are willing to work with you and/or your group to arrange cheap travel to the event. Sorry for the inconvenience.
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/apple.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">What should I bring?
</h3>
<div class="answer">
Remember to bring a valid student or goverment-issued ID for admission and anything you need to hack away!
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/dino.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">What is with the dinosaur?
</h3>
<div class="answer">
Diano is our mascot, and she isn't just any dinosaur. She's a dinosaur that hacks. Why wouldn't you love a dinosaur that also hacks?
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/castle.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">How can my company get involved?
</h3>
<div class="answer">
Absolutely! If you want to sponsor us, please email <a href="mailto:sponsorship@hackhers.org">rutgers.hackhers@gmail.com</a>
</div>
</li>
<li>
<h3 class="question"><img src="images/faq-icons/wizard.png" alt="fairy-icon" class="icon" style="height: 25px; width: 25px; margin-right: 15px;">Can I mentor or volunteer?
</h3>
<div class="answer">
Yes! We welcome all regardless of gender who want to help. We appreciate all who want to
support our cause. Mentors help hackers during the event
with any technical questions they might have. Volunteers support the organizing team
during the hackathon with various tasks.
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- SPONSORS -->
<div class="section" id="sponsors">
<div class="section-title">2025 Sponsors</div>
<div class="sponsor-thanks">
<a href="https://www.adp.com/" target="_blank"><img
src="images/sponsors/ADP-logo.png" style="width: 320px; height: 250px;"></a>
<a href="https://www.td.com/us/en/personal-banking" target="_blank"><img
src="images/sponsors/TD-logo.png" style="width: 370px; height: 250px;"></a>
<a href="https://www.fiserv.com/en.html" target="_blank"><img
src="images/sponsors/fiserv-logo.png" style="width: 370px; height: 250px;"></a>
<a href="https://www.lockheedmartin.com/en-us/index.html" target="_blank"><img
src="images/sponsors/Lockheed-logo.png" style="width: 370px; height: 250px;"></a>
<a href="https://investor.vanguard.com/corporate-portal" target="_blank"><img
src="images/sponsors/Vanguard-logo.png" style="width: 370px; height: 250px;"></a>
<a href="https://www.prudential.com/?utm_medium=cpc&utm_source=GOOGLE&utm_campaign=CORP_Tier1_B2C_Brand_Prudential_Consumer_Brand_Brand-Funded_ALL_Brand_31-40_Exact&ds_cid=71700000116826013&utm_content=Prudential&ds_agid=58700008639401789&utm_term=prudential&ds_kid=43700079034088939&matchtype=e&network=g&adposition=&gad_source=1&gclid=CjwKCAiAtYy9BhBcEiwANWQQLzHTFNY747iK0zCqapBMBlUPODYnaYt-_nnYh20vhpuR-35PvlwwDBoCi8MQAvD_BwE&gclsrc=aw.ds" target="_blank"><img
src="images/sponsors/prudential-logo.png" style="width: 300px; height: 100px;"></a>
<a href="https://www.ukg.com/" target="_blank"><img
src="images/sponsors/UKG-logo.png" style="width: 200px; height: 75px; margin: 130px;"></a>
<a href="https://mlh.io/" target="_blank"><img
src="images/sponsors/MLH-logo.png" style="width: 200px; height: 100px;"></a>
</div>
</div>
<!-- MEET THE TEAM -->
<div class="section" id="team">
<div class="section-title">Meet the Team</div>
<div class="tab">
<button class="tablinks active" onclick="openTab(event, 'Eboard')">
Eboard
</button>
<button class="tablinks" onclick="openTab(event, 'HackHERS-committee')">
HackHERS Committee
</button>
</div>
<!--EBOARD-->
<div id="Eboard" class="tabcontent active">
<!-- The copy pastable box with information underneath-->
<section id="member-container">
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/NATALIE24.png"
class="image-box"
alt=""
/>
<h3 class="name">Natalie Chow</h3>
<h6 class="role">HackHERS Executive Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/TANVI24.jpeg"
class="image-box"
alt=""
/>
<h3 class="name">Tanvi Yamarthy</h3>
<h6 class="role">HackHERS Executive Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/TANUSHREE24.PNG"
class="image-box"
alt=""
/>
<h3 class="name">Tanushree Mehta</h3>
<h6 class="role">HackHERS Executive Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/AMANDA24.jpeg"
class="image-box"
alt=""
/>
<h3 class="name">Amanda Tsui</h3>
<h6 class="role">Spring'25 Co-President</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/AKSHARA24.png"
class="image-box"
alt=""
/>
<h3 class="name">Sri Akshara Kollu</h3>
<h6 class="role">Spring'25 Co-President</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/SRINIDHI24.jpg"
class="image-box"
alt=""
/>
<h3 class="name">Srinidhi Ayalasomayajula</h3>
<h6 class="role">Fall'24 President</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/KATRINA24.jpeg"
class="image-box"
alt=""
/>
<h3 class="name">Katrina Bawar</h3>
<h6 class="role">Day-Of Events Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/RANVITHA24.jpg"
class="image-box"
alt=""
/>
<h3 class="name">Ranvitha Kandru</h3>
<h6 class="role">Day-Of Events Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/SARA24.jpg"
class="image-box"
alt=""
/>
<h3 class="name">Sara Deshmukh</h3>
<h6 class="role">Day-Of Events Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/NITHYA24.jpg"
class="image-box"
alt=""
/>
<h3 class="name">Nithya Konduru</h3>
<h6 class="role">Sponsorship Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/van.jpg"
class="image-box"
alt=""
/>
<h3 class="name">Vanessa Chan</h3>
<h6 class="role">Sponsorship Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/sanika.png"
class="image-box"
alt=""
/>
<h3 class="name">Sanika Deshmukh</h3>
<h6 class="role">Sponsorship Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/DHYANASHRI24.jpeg"
class="image-box"
alt=""
/>
<h3 class="name">Dhyanashri Raman</h3>
<h6 class="role">Finance Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/NADINE24.jpg"
class="image-box"
alt=""
/>
<h3 class="name">Nadine Odeh</h3>
<h6 class="role">Experience Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/JESSICA24.jpg"
class="image-box"
alt=""
/>
<h3 class="name">Jessica Luo</h3>
<h6 class="role">Experience Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/ANDREA24.png"
class="image-box"
alt=""
/>
<h3 class="name">Andrea Kim</h3>
<h6 class="role">Marketing Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/AUDREY24.png"
class="image-box"
alt=""
/>
<h3 class="name">Audrey Shin</h3>
<h6 class="role">Design Director</h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/DIVYA24.JPG"
class="image-box"
alt=""
/>
<h3 class="name">Divya Israni</h3>
<h6 class="role">Girls Who Code Director</h6>
</div>
</section>
</div>
<!--HackHERS Committee-->
<div id="HackHERS-committee" class="tabcontent">
<!-- The copy pastable box with information underneath-->
<section id ="member-container">
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/aud.jpg"
class="image-box"
alt=""
/>
<h3 class="name"> Audrey Wang </h3>
<h6 class="role"> Design Committee Member </h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/sel.jpg"
class="image-box"
alt=""
/>
<h3 class="name"> Selina Mei </h3>
<h6 class="role"> Design Committee Member </h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/robin.jpg"
class="image-box"
alt=""
/>
<h3 class="name"> Robin Luo </h3>
<h6 class="role"> Design Committee Member </h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/radha.jpg"
class="image-box"
alt=""
/>
<h3 class="name"> Radha Ghate </h3>
<h6 class="role"> Marketing Committee Member </h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/zeal.jpg"
class="image-box"
alt=""
/>
<h3 class="name"> Zeal Shah </h3>
<h6 class="role"> Marketing Committee Member </h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/zene.jpg"
class="image-box"
alt=""
/>
<h3 class="name"> Zene Sangoi </h3>
<h6 class="role"> Marketing Committee Member </h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/mary.jpg"
class="image-box"
alt=""
/>
<h3 class="name"> Mary Buist </h3>
<h6 class="role"> Marketing Committee Member </h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/eesha.jpg"
class="image-box"
alt=""
/>
<h3 class="name"> Eesha Desai </h3>
<h6 class="role"> Marketing Committee Member </h6>
</div>
<div class="member-card">
<img
height="315"
width="315"
src="images/pics/shreya.png"
class="image-box"
alt=""
/>
<h3 class="name"> Shreya Bhardwaj </h3>
<h6 class="role"> Marketing Committee Member </h6>
</div>
</section>
</div>
</div>
<!-- <div class="row">
<div class="col-xs-6 col-sm-3">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/srinidhiayala/">
<img src="images/board/srinidhi2023.png"></a>
<h4> Srinidhi Ayalasomayajula </h4>
<h6> HackHERS Director </h6>
</div>
</li>
</div>
<div class="col-xs-6 col-sm-3">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/khushidarji">
<img src="images/board/khushi2023.png"></a>
<h4> Khushi Darji </h4>
<h6> President </h6>
</div>
</li>
</div>
<div class="col-xs-6 col-sm-3">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/nadine-odeh/">
<img src="images/board/nadine2023.png"></a>
<h4> Nadine Odeh </h4>
<h6> Education Director </h6>
</div>
</li>
</div>
<div class="col-xs-6 col-sm-3">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/amandaltsui">
<img src="images/board/amanda2023.png"></a>
<h4> Amanda Tsui </h4>
<h6> Treasurer </h6>
</div>
</li>
</div>
</div>
<div class="row">
<div class="col-xs-4 col-sm-4">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/tanviyamarthy/">
<img src="images/board/tanvi2023.png"></a>
<h4> Tanvi Yamarthy </h4>
<h6> Outreach Director </h6>
</div>
</li>
</div>
<div class="col-xs-4 col-sm-4">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/navyasharma7724/">
<img src="images/board/navya2023.png"></a>
<h4> Navya Sharma </h4>
<h6> Outreach Director </h6>
</div>
</li>
</div>
<div class="col-xs-4 col-sm-4">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/nicole-hsieh/">
<img src="images/board/nicole2023.png"></a>
<h4> Nicole Hsieh </h4>
<h6> Outreach Director </h6>
</div>
</li>
</div>
</div>
<div class="row">
<div class="col-xs-4 col-sm-3">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/nithya-konduru-13357b287?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app">
<img src="images/board/nithya2023.png"></a>
<h4> Nithya Konduru </h4>
<h6> Events Director </h6>
</div>
</li>
</div>
<div class="col-xs-6 col-sm-3">
<li class="team-wrapper">
<div class="lead">
<a href="">
<img src="images/board/akshara.png"></a>
<h4> Akshara Kollu </h4>
<h6> Events Director </h6>
</div>
</li>
</div>
<div class="col-xs-6 col-sm-3">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/arunimabhowmik/">
<img src="images/board/arunima2023.png"></a>
<h4> Arunima Bhowmik </h4>
<h6> Events Director </h6>
</div>
</li>
</div>
<div class="col-xs-6 col-sm-3">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/tanushreemehta/">
<img src="images/board/tanushree2023.png"></a>
<h4> Tanushree Mehta </h4>
<h6> Girls Who Code Director </h6>
</div>
</li>
</div>
</div>
<div class="row">
<div class="col-xs-6 col-sm-4">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/natalie-chow-a99029219/">
<img src="images/board/natalie2023.png"></a>
<h4> Natalie Chow </h4>
<h6> Marketing Director </h6>
</div>
</li>
</div>
<div class="col-xs-6 col-sm-4">
<li class="team-wrapper">
<div class="lead">
<a href="https://www.linkedin.com/in/jessica-luo336?trk=contact-info">
<img src="images/board/jessica2023.png"></a>
<h4> Jessica Luo </h4>
<h6> Design Director </h6>
</div>
</li>
</div>
</div>
</div>
</section>
</div>
</div> -->
</div>
<!-- was thinking about adding a map maybe -->
<!-- <div class="map">
<iframe src="https://storage.googleapis.com/maps-solutions-nf5eckme6s/locator-plus/zm7c/locator-plus.html"
width="100%" height="100%"
style="border:0;"
loading="lazy">
</iframe>
</div> -->
<!-- footer -->
<a id="mlh-trust-badge" href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2025-season&utm_content=gray" target="_blank">
<img src="https://s3.amazonaws.com/logged-assets/trust-badge/2025/mlh-trust-badge-2025-gray.svg" alt="Major League Hacking 2025 Hackathon Season">
</a>
</body>
<div id="footer">
<div class="footer-left">
<div class="footer-logo">
<img src="images/logos/text-logo-footer.png" class="footer-img">
</div>
<div class="social-icons">
<a href="http://facebook.com/ruhackhers" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="http://instagram.com/ruhackhers/?hl=en" target="_blank">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<a href="mailto:rutgers.hackhers@gmail.com" target="_blank">
<i class="fa fa-envelope-o" aria-hidden="true"></i>
</a>
</div>
</div>
<div class="made-with">
<p>Made with <3 by the HackHERS Team</p>
<a href="https://github.com/MLH/mlh-policies/blob/main/code-of-conduct.md" style="color: white; font-size: 12px; text-decoration: underline;"> MLH Code of Conduct</a>
</div>
</div>
</html>