-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
760 lines (678 loc) · 34.5 KB
/
index.html
File metadata and controls
760 lines (678 loc) · 34.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HackHERS 2021</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/graphics/logo.png">
</head>
<body>
<!--navbar markup-->
<!--<nav class="navbar navbar fixed-top">-->
<!-- <div class="container-fluid">-->
<!-- <div class="navbar-header">-->
<!-- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">-->
<!-- <span class="icon-bar"></span>-->
<!-- <span class="icon-bar"></span>-->
<!-- <span class="icon-bar"></span>-->
<!-- </button>-->
<!-- </div>-->
<!-- <div class="collapse navbar-collapse" id="myNavbar">-->
<!-- <ul class="nav navbar-nav" id="navbar-left">-->
<!-- <li><a href="#about">About</a></li>-->
<!-- <li><a href="#get-involved">Join Us</a></li>-->
<!-- <li><a href="#schedule">Schedule</a></li>-->
<!-- </ul>-->
<!-- <!–<img src="img/logo-nav.png" id="nav-shell">–>-->
<!-- <ul class="nav navbar-nav" id="navbar-right">-->
<!-- <li><a href="#faq">Faq</a></li>-->
<!-- <li><a href="#sponsors">Sponsors</a></li>-->
<!-- <li><a href="#team">Team</a></li>-->
<!-- </ul>-->
<!-- </div>-->
<!-- </div>-->
<!--</nav>-->
<!--end navbar markup-->
<div class="container-fluid">
<nav class="navbar navbar-expand-sm fixed-top" id="navbar">
<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="navbar navbarMenu">
<ul class="navbar-nav ml-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>
<!-- <a href="google.com" class="navbar-brand cta">Register today!</a>-->
</nav>
</div>
<div id="header">
<img id="logo" src="images/graphics/logo.png">
<div id="header-right">
<!-- <img src="images/logos/text-logo.png" id="main-logo">-->
<!-- <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 20, 2021 8:00:00");
initializeClock('clockdiv', deadline);
</script> -->
<!-- </div> -->
<h2 id="hack-date">
February 20 - 21, 2021 <br>
Virtual <br>
<!-- New Jersey's largest all-female, femme, and non-binary hackathon. -->
</h2>
<div id="app_buttons">
<button id="hacker_button"><a target="_blank" href="http://bit.ly/hackhers-schedule">Schedule</a></button>
<button id="mentor_button"><a target="_blank" href="https://join.slack.com/t/hackhers2021/shared_invite/zt-lb0ksl8i-r4onru_ii7Pva8WxZU6KnQ">Slack Link</a></button>
<button id="volunteer_button"><a target="_blank" href="https://hackhers-2021.devpost.com/">Devpost Link</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 womxn-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, food,
and more! No experience necessary, you just need passion.
</p>
<p>
In its seventh iteration, over 500 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> in collaboration with
<b><a href="http://douglass.rutgers.edu" target="_blank">Douglass Residential College</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">
<h4><b> All time are in EST </b></h4><br><br>
<div>
<iframe class = "airtable-embed" src="https://airtable.com/embed/shrWletsCnyHlSnbN/tblInvDTZfgV7reDw?backgroundColor=red&viewControls=on" frameBorder="0" onmousewheel="" width="100%" height="700" style="background:transparent; border:1px solid #ccc;"></iframe>
</div>
<br><br>
<h4>Saturday</h4> <br>
<b>9:30 AM</b> Slack link sent out<br>
<b>10:00 AM - 10:30 AM</b> Opening Ceremony<br>
<b>10:30 AM</b> Hacking Begins<br>
<b>11:00 AM - 11:30 AM</b> Team Building/Networking<br>
<b>11:30 AM - 12:00 PM</b> Sponsor Networking<br>
<b>12:00 PM - 1:00 PM</b> Lunch<br>
<b>1:00 PM - 3:00PM</b> Sponsor Career Fair<br>
<b>3:00 PM - 4:00 PM</b> Resume Reviews & Behavioral Interview Advice with Lockheed Martin
<br>
<b>4:00 PM - 5:00PM</b> Merck Tech Talk: Technology Sampler for Pharma Manufacturing
<br>
<b>5:00 PM - 6:00PM</b> Jeopardy
<br>
<b>6:00 PM - 7:00PM</b> WiCS Ladies Alumni Panel
<br>
<b>7:00 PM - 8:00 PM</b> CreativeX Design Workshop <br>
<b>8:00 PM - 9:00 PM</b> Inclusivity in Tech with Out in Tech
<br>
</span>
<br><br>
<span style="font-size: 20px">
<h4>Sunday</h4> <br>
<b>8:30 AM - 9:00 AM</b> How to Submit your Hack Workshop<br>
<b>9:00 AM</b> Submissions Due<br>
<b>9:00 AM - 11:30 AM</b> Judging<br>
<b>11:00 AM - 12:00 PM</b> Closing Ceremony<br>
</span>
</div>
<!-- FAQ -->
<div class="section" id="faq">
<div id="faq-content">
<!-- Questions -->
<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 are open now until Feb 16th. -->
Applications will open in December 2020. Priority Registration deadline is January 31st.
Mentor and volunteer apps will open in January 2021.
</div>
</li>
<li>
<h3 class="question">Does this cost money?
</h3>
<div class="answer">
Nope! Admission is free and covers overnight stay, food, all the snacks you could ever want, and of course, our sponsors and HackHERS will provide you with the free swag!!
</div>
</li>
<li>
<h3 class="question">Where will HackHERS take place?
</h3>
<div class="answer">
HackHERS will take place virtually this year due to Rutgers' policy.
</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 Lot 76, Lot 99C, or Lot 99D. Rutgers students with registered vehicles are NOT allowed to park in these lots. Email rutgers.hackhers@gmail.com to find out how to register for parking.
</div>
</li> -->
<li>
<h3 class="question">Will there be hardware available?
</h3>
<div class="answer">
Yes! Hardware will be provided by MLH.
</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">
Remember to bring a valid student or goverment-issued ID for admission and anything you need to hack away! Because this is an overnight event, you may want to bring a sleeping bag, a toothbrush, toothpaste, and a change of clothes. You should also bring a laptop, and if you have one, an extension cord.
</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. Links for both apps are at the top of the page.
</div>
</li>
</ul>
<div id="faq-right">
<img src="images/logos/dianoTake2Light.png" class="side">
<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">2021 Sponsors</div>
<div class="sponsor-thanks">
A <b>huge</b> thank you to all our new sponsors for 2021! HackHERS wouldn't be the same without our amazing sponsors!
<br>
</div>
<div id="sponsor-logos">
<!-- <-- Gold -->
<div class="sponsor-tier gold">
<a href="http://capitalone.com/" target="_blank"><img
src="images/sponsors/silver/capital_one.png"></a>
<a href="https://www.lockheedmartin.com/en-us/index.html" target="_blank"><img
src="images/sponsors/gold/lockheed-martin.png"></a>
<a href="hhttps://www.merck.com/" target="_blank"><img
src="images/sponsors/gold/merck.png"></a>
</div>
<!-- Silver-->
<!-- <div class="sponsor-tier silver">
<a href="http://gartner.com/" target="_blank"><img
src="images/sponsors/silver/gartner.png"></a>
<a href="http://cloud.google.com/" target="_blank"><img
src="images/sponsors/silver/google_cloud.png"></a>
<a href="http://lockeedmartin.com/" target="_blank"><img
src="images/sponsors/silver/lockheed_martin.png"></a>
<a href="http://vanguard.com/" target="_blank"><img
src="images/sponsors/silver/vanguard.png"></a>
<a href="http://verizon.com/" target="_blank"><img
src="images/sponsors/silver/verizon.png"></a>
<a href="https://www2.wakefern.com/" target="_blank"><img
src="images/sponsors/silver/wakefern.png"></a>
</div> -->
<!-- Bronze-->
<div class="sponsor-tier bronze">
<a href="http://bloomberg.com/" target="_blank"><img
src="images/sponsors/silver/bloomberg.png"></a>
</div>
<!-- Other Sponsors -->
<div class="sponsor-tier misc">
<a href="https://www.echoar.xyz/" target="_blank"><img
src="images/sponsors/misc/echoar.png"></a>
<a href="https://www.twilio.com/" target="_blank"><img
src="images/sponsors/misc/twilio.png"></a>
<!-- <a href="http://kingpita.com/" target="_blank"><img
src="images/sponsors/misc/king_pita.png"></a>
<a href="http://mlh.io/" target="_blank"><img
src="images/sponsors/misc/mlh.png"></a> -->
</div>
</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>-->
</div>
<!-- team -->
<!-- <div class="section" id="organizers">
<div class="section-title">Meet The Team</div>
<div class="team">
<div class="person">
<img src="images/board/sam_new.jpg" class="profile-img">
<p>Samantha Lee</p>
<p class="team-name">HackHERS Executive Director</p>
</div>
<div class="person">
<img src="images/board/madhu_new.jpg" class="profile-img">
<p>Madhu Sivaraj</p>
<p class="team-name">President</p>
</div>
<div class="person">
<img src="images/board/manasvi.jpg" class="profile-img">
<p>Manasvi Medam</p>
<p class="team-name">Finance Director</p>
</div>
<div class="person">
<img src="images/board/deepika_new.jpg" class="profile-img">
<p>Deepika Onteru</p>
<p class="team-name">Sponsorship Director</p>
</div>
<div class="person">
<img src="images/board/varna_new.jpg" class="profile-img">
<p>Varna Chandar</p>
<p class="team-name">Sponsorship Director</p>
</div>
<div class="person">
<img src="images/board/jarelle.jpg" class="profile-img">
<p>Jarelle Boac</p>
<p class="team-name">Events Director</p>
</div>
<div class="person">
<img src="images/board/nikita.jpg" class="profile-img">
<p>Nikita Sharma</p>
<p class="team-name">Events Director</p>
</div>
<div class="person">
<img src="images/board/rakshaa_new.jpg" class="profile-img">
<p>Rakshaa Ravishankar</p>
<p class="team-name">Experience Director</p>
</div>
<div class="person">
<img src="images/board/rachael.jpg" class="profile-img">
<p>Rachael Chin</p>
<p class="team-name">Experience Director</p>
</div>
<div class="person">
<img src="images/board/kuhu.jpg" class="profile-img">
<p>Kuhu Halder</p>
<p class="team-name">Marketing Director</p>
</div>
<div class="person">
<img src="images/board/rachana.jpg" class="profile-img">
<p>Rachana Kotamraju</p>
<p class="team-name">Design Director</p>
</div>
</div>
</div> -->
<section id="team">
<div class="section-title">Meet The Team</div>
<div class="row">
<div class="col-xs-6 col-sm-3" id="filler-1">
<li class="team-wrapper">
<div class="lead" >
</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/samanthallee/">
<img src="images/board/sam_new.jpg"></a>
<h4> Samantha Lee </h4>
<h6> HackHERS Executive 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/rachaelchin334/">
<img src="images/board/rachael.jpg"></a>
<h4> Rachael Chin </h4>
<h6> Hackathon Director </h6>
</div>
</li>
</div>
<div class="col-xs-6 col-sm-3" id="filler-2">
<li class="team-wrapper">
<div class="lead">
</div>
</li>
</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/ramithasravi/">
<img src="images/board/ramitha.jpg"></a>
<h4> Ramitha Ravishankar </h4>
<h6> Finance 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/manasvimedam/">
<img src="images/board/manasvi.jpg"></a>
<h4> Manasvi Medam </h4>
<h6> Finance 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/deepikaonteru/">
<img src="images/board/deepika_new.jpg"></a>
<h4> Deepika Onteru </h4>
<h6> Sponsorship 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/varnachandar/">
<img src="images/board/varna_new.jpg"></a>
<h4> Varna Chandar </h4>
<h6> Sponsorship Director </h6>
</div>
</li>
</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/jarelleboac/">
<img src="images/board/jarelle.jpg"></a>
<h4> Jarelle Boac </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/nikita-sharma-629304195/">
<img src="images/board/nikita.jpg"></a>
<h4> Nikita Sharma </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/rakshaa-ravishankar/">
<img src="images/board/rakshaa_new.jpg"></a>
<h4> Rakshaa Ravishankar </h4>
<h6> Experience 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/shramaswamy/">
<img src="images/board/shambhavi.jpg"></a>
<h4> Shambhavi Ramaswamy</h4>
<h6> Experience Director </h6>
</div>
</li>
</div>
</div>
<div class="row">
<div class="col-xs-6 col-sm-3" id="filler-3">
<li class="team-wrapper">
<div class="lead">
</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/kuhuhalder/">
<img src="images/board/kuhu.jpg"></a>
<h4> Kuhu Halder </h4>
<h6> Marketing 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/rachana-kotamraju/">
<img src="images/board/rachana.jpg"></a>
<h4> Rachana Kotamraju </h4>
<h6> Design Director </h6>
</div>
</li>
</div>
</div>
</section>
<!-- 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>
</body>
</html>