-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
722 lines (651 loc) · 34.9 KB
/
index.html
File metadata and controls
722 lines (651 loc) · 34.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HackHERS 2024</title>
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Cabin|Roboto&display=swap" rel="stylesheet">
<!-- 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">
<!-- <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,600&display=swap" rel="stylesheet">-->
<!-- <link rel="stylesheet" type="text/css" href="css/font-awesome-4.6.3/css/font-awesome.min.css">-->
<!-- <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">-->
<!-- 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/main.js"></script>
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/logos/text-logo-footer.png">
</head>
<body>
<!-- <img src = "images/graphics/smalltreesbg.png"/> -->
<!--end navbar markup-->
<div class="container-fluid">
<nav class="navbar navbar-expand-sm fixed-top" id="navbar" style="background-color: #0C5241">
<div class="navbar-header">
<button class="navbar-toggler " type="button" data-toggle="collapse" data-target="#navbarMenu" aria-controls="navbarMenu" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarMenu">
<ul class="navbar-nav mr-auto">
<li class="nav-item"><a href="#about" class="nav-link">About</a></li>
<li class="nav-item"><a href="#sponsors" class="nav-link">Sponsors</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="#team" class="nav-link">Team</a></li>
</ul>
</div>
</nav>
</div>
<div id="header">
<img id="logo" src="images/logos/2024logo.png" >
<div id="header-above">
<h2 id="hack-date">
New Jersey's Largest Women and Non-Binary Centric Hackathon
</h2>
<div class="register">
<button id="register_button">
<a target="_blank" href="https://docs.google.com/forms/d/e/1FAIpQLSclJGaGZZcie1F6qb3eDhJnp0IxG2KXQip-MAYjFnbXApg61Q/viewform">
<img src="images/graphics/diano_register_button.png" style="width: 160px; height: 160px;">
</a>
</button>
</div>
</div>
<div id="header-below">
<div id="countdown">
<!-- Display the countdown timer in an element -->
<!-- <h1 style="padding-top: 5%">Time Remaining</h1> -->
<div id="clockdiv">
<div class="timer">
<div class="days time"></div>
</div>
<div class="timer">
<div class="hours time"></div>
</div>
<div class="timer">
<div class="minutes time"></div>
</div>
<div class="timer">
<div class="seconds time"></div>
</div>
</div>
<!-- <script>
function getTimeRemaining(endtime) {
var t = Date.parse(endtime) - Date.parse(new Date());
var seconds = Math.floor((t / 1000) % 60);
var minutes = Math.floor((t / 1000 / 60) % 60);
var hours = Math.floor((t / (1000 * 60 * 60)) % 24);
var days = Math.floor(t / (1000 * 60 * 60 * 24));
return {
'total': t,
'days': days,
'hours': hours,
'minutes': minutes,
'seconds': seconds
};
}
function initializeClock(id, endtime) {
var clock = document.getElementById(id);
var timer = clock.querySelector('.timer');
var daysSpan = clock.querySelector('.days');
var hoursSpan = clock.querySelector('.hours');
var minutesSpan = clock.querySelector('.minutes');
var secondsSpan = clock.querySelector('.seconds');
function updateClock() {
var t = getTimeRemaining(endtime);
daysSpan.innerHTML = t.days + " d";
hoursSpan.innerHTML = ('' + t.hours).slice(-2) + " h";
minutesSpan.innerHTML = ('' + t.minutes).slice(-2) + " m";
secondsSpan.innerHTML = ('' + t.seconds).slice(-2) + " s";
daysSpan.style.width = "100%";
hoursSpan.style.width = "100%";
minutesSpan.style.width = "100%";
secondsSpan.style.width = "100%";
daysSpan.style.fontSize = "24px";
hoursSpan.style.fontSize = "24px";
minutesSpan.style.fontSize = "24px";
secondsSpan.style.fontSize = "24px";
if (t.total <= 0) {
clearInterval(timeinterval);
}
}
updateClock();
var timeinterval = setInterval(updateClock, 1000);
}
var deadline = new Date("Feb 10, 2023 8:00:00");
initializeClock('clockdiv', deadline);
</script> -->
</div>
<h1 style="padding-bottom: 40px;">
Event Details
</h1>
<h4>
February 10-11, 2024 <br><br>
Saturday-Sunday: Trayes Hall @Douglass Student Center - 100 George St, New Brunswick, NJ 08901 <br><br> </h4>
<h4 style="color: white"> New Jersey's largest all-female, femme, and non-binary hackathon. <br><br>
</h4>
<div id="app_buttons">
<button id="volunteer_button"><a target="_blank" href="http://eepurl.com/hdVNlz">Subscribe to our Newsletter!</a></button>
<button id="volunteer_button"><a target="_blank" href= "https://hackhers-2024.devpost.com/">HackHERS 2024 Devpost</a></button>
<button id="volunteer_button"><a target="_blank" href= "https://airtable.com/appo8HcRRgQI7uqAv/shrgvzjPQ0vUp7AIr">Events Schedule</a></button>
<!-- <button id="volunteer_button"><a target="_blank" href= "https://static.mlh.io/docs/mlh-code-of-conduct.pdf">MLH Code of Conduct</a></button> -->
</div>
<div class="list-inline">
<a href="https://www.facebook.com/ruhackhers/" target="_blank" class="btn-social btn-outline"><i class="fa fa-fw fa-facebook"></i></a>
<a href="https://twitter.com/ruhackhers" target="_blank" class="btn-social btn-outline"><i class="fa fa-fw fa-twitter"></i></a>
<a href="https://instagram.com/ruhackhers" target="_blank" class="btn-social btn-outline"><i class="fa fa-fw fa-instagram"></i></a>
<a href="https://medium.com/@ruhackhers" target="_blank" class="btn-social btn-outline"><i class="fa fa-medium"></i></a>
</div>
</div>
</div>
<div id="main">
<!-- ABOUT -->
<div class="section" id="about">
<h1 class="section-title">About</h1>
<h4>New Jersey's largest women-centric hackathon.</h4>
<div id="about-info">
<p>
Join us for a weekend dedicated to <b>filling the gender gap</b>,
exploring technology, and building the next big thing! 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! No experience necessary, you just need passion.
</p>
<p>
In its tenth iteration, over 200 students will come together for 24 hours to
<b>create with code </b> and turn their ideas into reality. HackHERS is organized by
<b><a href="http://rutgerswics.org" target="_blank">Rutgers Women in Computer Science</a></b>.
</p>
</div>
<div id="info-cards">
<div class="card">
<img class="about-img" src="" width="150px">
<p>
From hardware to mobile, there are so many fields to
explore! We want women to explore their ideas and interests, and
are looking forward to some amazing projects!
</p>
</div>
<div class="card">
<img class="about-img" src="" width="150px">
<p>
We're all about helping each other grow! We hope to foster a
supportive environment so that each participant at HackHERS
feels welcome and comfortable.
</p>
</div>
<div class="card">
<img class="about-img" src="" width="150px">
<p>
Right now, only 20% of hackathon participants are women. We hope
to fill that gap by providing a comfortable environment that is
focused on learning and exploring!
</p>
</div>
</div>
</div>
<div class = "section" id="schedule">
<h1 class="section-title">Schedule</h1><br>
<span style="font-size: 20px">
<h5><b> All times are in EST </b></h5><br>
<div>
<iframe class="airtable-embed" src="https://airtable.com/embed/appo8HcRRgQI7uqAv/shrZ0q74bv68PgiYz?backgroundColor=purple&viewControls=on" frameborder="0" onmousewheel="" width="100%" height="533" style="background: transparent; border: 1px solid #ccc;"></iframe>
</div>
<!-- <br><br>
<h4>Saturday 02/10</h4> <br>
<b>10:15 AM</b> Doors Open - Check in sponsors<br>
<b>11:00 AM - 12:00 PM</b> Doors Open - Check in participants<br>
<b>12:00PM</b> Opening Ceremony<br>
<b>12:30 PM</b> Hacking Begins <br>
<b>12:30 PM - 1:00 PM</b> Team Building + Brainstorming Session<br>
<b>1:00 PM - 2:00 PM</b> Lunch<br>
<b>2:00 PM - 3:00 PM</b> Company Event<br>
<b>4:00 PM - 5:00 PM</b> CreativeX Workshop
<br>
<b>5:00 PM - 6:00 PM</b> Workshop
<br>
<b>6:00 PM - 7:00 PM</b> Blueprint Workshop
<br>
<b>7:00 PM - 8:00 PM</b> Dinner
<br>
<b>8:00 PM - 9:00 PM</b> iLight MLH Event<br>
<b>9:00 PM - 10:00 PM</b> USACS<br>
<b>10:00 PM - 11:00 PM</b> Jeopardy<br>
<b>11:00 PM - 12:00 AM</b> Doors Close
<br>
</span>
<br><br>
<span style="font-size: 20px">
<h4>Sunday 02/11</h4> <br>
<b>10:00 AM</b> Doors Open - Breakfast Served<br>
<b>11:00 AM - 1:00 PM</b> Last minute prep time for hackhers<br>
<b>1:00 PM</b> Deadline for Submission<br>
<b>1:00 PM - 2:00 PM</b> Lunch<br>
<b>1:00 PM - 4:00 PM</b> Judging (w/ workshops on the side)<br>
<b>4:00 PM - 4:30 PM</b> Closing Ceremony<br>
<b>5:00 PM</b> Event Ends<br>
</span> -->
</div>
<!-- FAQ -->
<div class="section" id="faq">
<div id="faq-content">
<ul class="faq">
<div class="section-title">FAQS</div>
<li>
<h3 class="question">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">I identify as a male—does that mean I can attend then?
</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">I don’t have any coding experience, can I still participate?
</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">I don’t feel comfortable going in without some experience...
</h3>
<div class="answer">
We understand, and we got you! Every year, we host a series of workshops about a week before HackHERS called "Pre-HackHERS", in which we cover topics such as basic web development, how to use git and github, etc. We also provide professional development workshops as well. More details about Pre-HackHERS 2021 will be released on our Facebook page.
</div>
</li>
<li>
<h3 class="question">How do I apply?
</h3>
<div class="answer">
Applications for hackers will close by 3rd February!!!
You can apply <a href = "https://tinyurl.com/4b8ce4xn">here!</a>.
</div>
</li>
<li>
<h3 class="question">Does this cost money?
</h3>
<div class="answer">
Nope! Participating in HackHERS is free of cost.
</div>
</li>
<li>
<h3 class="question">Where will HackHERS take place?
</h3>
<div class="answer">
HackHERS will take place on Saturday and Sunday at Trayes Hall on Cook Douglass campus.
</div>
</li>
<li>
<h3 class="question">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.
Guests must use the link to register for the event:
<a href="https://rudots.nupark.com/v2/portal/eventregister/c8dbca70-9638-4a96-a18e-851b9573dcc9#/events/registration/" target="_blank">Parking Registration Link</a>.
Until this process 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>
<li>
<h3 class="question">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">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">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">What should I bring?
</h3>
<div class="answer">
Reminder: This will not be an overnight event!
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">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">Is there a code of conduct?
</h3>
<div class="answer">
Yes, we want to make HackHERS enjoyable for everyone! We follow MLH's Code of Conduct:
<a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf" target="_blank">here</a>.
</div>
</li> -->
<li>
<h3 class="question">This looks like a cool event! Can my company get involved??
</h3>
<div class="answer">
Absolutely! If you want to sponsor us, please email <a href="mailto:sponsorship@hackhers.org">sponsorship@hackhers.org</a>
</div>
</li>
<li>
<h3 class="question">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 id="faq-right">
<div>
<div> if we missed your question, hit us up at <a
href="mailto:rutgers.hackhers@gmail.com">rutgers.hackhers@gmail.com</a></div>
</div> -->
</div>
</div>
<!-- SPONSORS -->
<div class="section" id="sponsors">
<div class="section-title">2024 Sponsors</div>
<div class="sponsor-thanks">
<h4> A <b>huge</b> thank you to all our new sponsors for 2024! HackHERS wouldn't be the same without our amazing sponsors! </h4>
<br>
<div class="sponsor-tier gold">
<a href="https://www.fiserv.com/en.html" target="_blank"><img
src="images/sponsors/gold/fiserv.png"></a>
<a href="http://vanguard.com/" target="_blank"><img
src="images/sponsors/gold/VG_WordMark.png"></a>
<a href="https://cloud.google.com/" target="_blank"><img
src="images/sponsors/silver/google_cloud.png"></a>
<a href="https://www.bloomberg.com/" target="_blank"><img
src="images/sponsors/silver/bloomberg.png"></a>
<a href="https://www.geico.com/" target="_blank"><img
src="images/sponsors/silver/geico.png"></a>
<a href="https://rewritingthecode.org/" target="_blank"><img
src="images/sponsors/silver/RTC.jpg"></a>
</div>
</div>
<!-- <h3>Package Options </h3> <br>
<h4>There are three sponsorship levels. All sponsorship payments must be received by December 1, 2021. Payment can be made online or by check (see next page for details).</h4><br>
<h5>Gold: $1,500</h5> <br>
• All benefits of silver and bronze with unlimited Mentors, 1 hour long company workshop, and large sized logo on website and shirt plus: <br>
• Speak at Opening and Closing Ceremony <br>
• Your company ’s API/Product Demo<br>
• 30 minute Fireside Chat<br>
• On-Site Interview Space<br>
• Your company ’s Pre-Hackathon event<br>
• Social Media Posts<br><br>
<h5>Silver: $1,000</h5><br>
• All benefits of bronze with 4 Mentors and Medium Sized Logo on Website plus:<br>
• Create your own Prize and Category<br>
• Host a 30 minute workshop<br>
• Company Challenge<br>
• Your company’s small sized logo on shirt<br><br>
<h5>Bronze: $500</h5><br>
• 2 Mentors present virtually<br>
• Donate a Prize in an Existing Category<br>
• Your company’s own Slack Channel (which serves as our virtual table)<br>
• Your company’s job/internship posting in HackHERS newsletter<br>
• Access to Resume and Github Database<br>
• Your company’s small sized logo on website and t-shirt<br>
• Acknowledgment during ceremonies<br>
*We will not be able to accommodate you with any benefits (including challenges) outside of your package.<br>
*All prizes must be shipped from the sponsor directly to the winners if sponsor chooses to create their own prize category.<br>
<br>
<br>
<br> -->
</div>
<!--<!– SOCIAL MEDIA –>
<div class="section" id="social_media">
<div class="section-title">
Recent Instagram Posts
</div>
<!– <div class='embedsocial-instagram' data-ref="56fd52ed1acb9c90192514399099b86aed976d0c"></div><script>(function(d, s, id){var js; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "https://embedsocial.com/embedscript/in.js"; d.getElementsByTagName("head")[0].appendChild(js);}(document, "script", "EmbedSocialInstagramScript"));</script> –>
<div class='embedsocial-instagram' data-ref="c451e9fac57169d61012ccceb4e65a89311f5910"></div><script>(function(d, s, id){var js; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "https://embedsocial.com/embedscript/in.js"; d.getElementsByTagName("head")[0].appendChild(js);}(document, "script", "EmbedSocialInstagramScript"));</script>
</div>-->
<section id="team">
<div class="section-title">Meet the Team</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>
<!--<!– SOCIAL MEDIA –>
<div class="section" id="social_media">
<div class="section-title">
Recent Instagram Posts
</div>
<!– <div class='embedsocial-instagram' data-ref="56fd52ed1acb9c90192514399099b86aed976d0c"></div><script>(function(d, s, id){var js; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "https://embedsocial.com/embedscript/in.js"; d.getElementsByTagName("head")[0].appendChild(js);}(document, "script", "EmbedSocialInstagramScript"));</script> –>
<div class='embedsocial-instagram' data-ref="c451e9fac57169d61012ccceb4e65a89311f5910"></div><script>(function(d, s, id){var js; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "https://embedsocial.com/embedscript/in.js"; d.getElementsByTagName("head")[0].appendChild(js);}(document, "script", "EmbedSocialInstagramScript"));</script>
</div>-->
<section id="committee">
<div class="section-title">Thank You to Our Committee Members!</div>
<div class="committee-section">
<div class="row">
<div class="col-sm">
<h4>Marketing Committee</h4>
<h6> </h6>
<h6> Akshara Kollu </h6>
<h6> Aparna Pillai </h6>
<h6> Bavina Inuganti </h6>
<h6> Haaniah Syed Ali </h6>
<h6> Kelly Xiong </h6>
<h6> Mary Buist </h6>
<h6> Pranjel Harare </h6>
<h6> Priti Kote </h6>
</div>
<div class="col-sm">
<h4>Sponsorship Committee</h4>
<h6> </h6>
<h6> Andrea Kim </h6>
<h6> Divya Israeli </h6>
<h6> Mansi Garg </h6>
<h6> Natalie Kim </h6>
<h6> Priyanka Dhingra </h6>
<h6> Sara Deshmukh </h6>
<h6> Shilpi Shah </h6>
</div>
<div class="col-sm">
<h4>Design Committee</h4>
<h6> </h6>
<h6> Ambereen Fatima </h6>
<h6> Jazmin Delos Santos </h6>
<h6> Natalie Kim </h6>
<h6> Rosie Kim </h6>
<h6> Aditi Negi </h6>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- footer -->
<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 💜 in New Brunswick</p>
</div>
</div>
<!-- <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=2024-season&utm_content=white" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2024/mlh-trust-badge-2024-white.svg" alt="Major League Hacking 2024 Hackathon Season" style="width:100%"></a> -->
</body>
</html>