-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhistory.html
575 lines (550 loc) · 33.8 KB
/
history.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"
/>
<meta name="keywords" content="FRC, FIRST, team 2265, 2265, Fe Maidens, Iron Maidens, history">
<meta name="description" content="Fe Maidens is an all-girls FIRST FRC robotics team from the Bronx High School of Science in Bronx, NY. Team 2265 was founded in December 2006 in an effort to encourage girls to explore and pursue the STEM field.">
<title>History | Fe Maidens</title>
<link rel="shortcut icon" href="images/FeMaidensGirl.png">
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600' rel='stylesheet'
type='text/css'>
<!--Google Analytics-->
<script async="" src="//www.google-analytics.com/analytics.js"></script>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-78117065-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<!--Dropdowns for reg navbar-->
<ul id="team-dropdown" class="dropdown-content deep-purple lighten-2 light">
<li><a href="mission.html" class="white-text">Mission</a></li>
<li><a href="history.html" class="white-text">History</a></li>
<li><a href="members.html" class="white-text">Members</a></li>
<li><a href="mentors.html" class="white-text">Mentors</a></li>
<li><a href="sponsors.html" class="white-text">Sponsors</a></li>
</ul>
<ul id="media-dropdown" class="dropdown-content deep-purple lighten-2 light">
<li><a href="photos.html" class="white-text">Photos</a></li>
<li><a href="videos.html" class="white-text">Videos</a></li>
<li><a href="publicity.html" class="white-text">Publicity</a></li>
<li><a href="resources.html" class="white-text">Resources</a></li>
<li><a class="white-text" href="calendar.html">Calendar</a></li>
<li><a href="newsletter.html" class="white-text">Newsletter</a></li>
</ul>
<div class="navbar-fixed light">
<nav class="deep-purple lighten-2">
<div class="nav-wrapper container">
<a id="logo-container" href="index.html" class="brand-logo"><img id="logo" src="images/FeMaidensLogo.png" alt="Fe Maidens"></a>
</br>
<a href="#" data-activates="nav-mobile" class="center button-collapse white-text" id="menu"><i class="material-icons">menu</i></a>
<ul id="nav-menu" class="hide-on-med-and-down">
<li><a class="dropdown-button white-text" href="#!" data-activates="team-dropdown">Team<i class="material-icons right" style="margin:0px">arrow_drop_down</i></a></li>
<li><a href="first.html" class="white-text">FIRST</a></li>
<li><a class="dropdown-button white-text" href="#!" data-activates="media-dropdown">Media<i class="material-icons right" style="margin:0px;">arrow_drop_down</i></a></li>
<li><a href="https://femaidens.wordpress.com/" class="white-text" target="_blank">Blog</a></li>
<li><a href="https://co.clickandpledge.com/sp/d2/default.aspx?wid=116262" class="white-text">Donate</a></li>
</ul>
<ul id="nav-mobile" class="side-nav deep-purple lighten-2">
<li class="no-padding">
<ul class="collapsible collapsible-accordion">
<li>
<a class="collapsible-header white-text">Team<i class="material-icons right">arrow_drop_down</i></a>
<div class="collapsible-body">
<ul>
<li><a href="mission.html" class="white-text">Mission</a></li>
<li><a href="history.html" class="white-text">History</a></li>
<li><a href="members.html" class="white-text">Members</a></li>
<li><a href="mentors.html" class="white-text">Mentors</a></li>
<li><a href="sponsors.html" class="white-text">Sponsors</a></li>
</ul>
</div>
</li>
</ul>
</li>
<li><a href="first.html" class="white-text" style="height: 61px;">FIRST</a></li>
<li class="no-padding">
<ul class="collapsible collapsible-accordion">
<li>
<a class="collapsible-header white-text">Media<i class="material-icons right">arrow_drop_down</i></a>
<div class="collapsible-body">
<ul>
<li><a href="photos.html" class="white-text">Photos</a></li>
<li><a href="videos.html" class="white-text">Videos</a></li>
<li><a href="publicity.html" class="white-text">Publicity</a></li>
<li><a href="resources.html" class="white-text">Resources</a></li>
<li><a class="white-text" href="calendar.html">Calendar</a></li>
<li><a href="newsletter.html" class="white-text">Newsletter</a></li>
</ul>
</div>
</li>
</ul>
</li>
<li><a href="https://femaidens.wordpress.com/" target="_blank" class="white-text">Blog</a></li>
</ul>
</div>
</nav>
</div>
<!-- End navbar -->
<h2 class="center">History</h2>
<div class="row">
<ul class="collapsible popout" data-collapsible="accordion">
<li>
<div class="collapsible-header active">Team History</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
In 2006, some female members of the Sciborgs, Bronx Science's co-ed robotics team, realized that they were mainly being given public relations tasks. They recognized that these roles were assigned to them because they were girls and decided to take initiative. In December 2006, they formed the Fe Maidens. Since its inception, the Fe Maidens has been dedicated to empowering the next generation of female engineers. Through robotics, our members learn essential skills for becoming effective leaders in STEM.
<br>
<br>
In our 10 years of competing, we have proved that girls are just as competent as their male counterparts. In our rookie season, we won the Rookie All Star Award and we were a quarter finalist. In 2008, we were once again a quarter-finalist. In 2009, we won a website design award. In 2010, we won the NYC regional, an imagery award, and the engineering inspirations award. In 2011, we were a semifinalist. Additionally, one of our members was a Deans List finalist. In 2012, we won an imagery award and were a semi finalist. In 2017, we were a quarter finalist at Hudson valley, a semifinalist at NYC, and we received an imagery award. The team continues to expand its outreach by working with three all-girls Lego Robotics teams: Chapin School, Bronx House SONYC, and Bronx Park Middle School. At the Bronx House Community Center, we worked with underprivileged girls and taught them the fundamentals of Lego robotics.
</div>
</div>
</li>
<li>
<div class="collapsible-header active">Alumnae</div>
<div class="collapsible-body">
<div class="row">
<h1 class="text-center general-text-black" style="font-size: 16pt;">Captain</h1>
<p class="text-center general-text-black" style="font-size: 12pt;">
<br> Ria Cha (2021)
<br> Megan Groppe (2020)
<br> Jessica Shannon (2019)
<br> Natasha Stamler (2018)
<br> Charlotte Kavaler (2017)
<br> S. Violet Killy (2016)
<br> Kiana Dyson (2015)
<br> Marsha Ghose (2014)
<br> Sonia Aktar (2013)
<br> Nicole Calace (2012)
<br> Leena Chan (2011)
<br> Qurat-ul-ain Ali (2010)
<br> Qurat-ul-ain Ali (2009)
<br> Jessica Sattinger (2008)
<br> Antoinette Carey (2007)
<br> Alexandra Greenbaum (2007)
<br>
<br>
</p>
<div clas="row">
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2020</h1>
<table>
<tr>
<td>
<p class="text-center general-text-black" style="font-size: 12pt;">
Megan Groppe - Carnegie Mellon University
<br> Nicole Constante - Northwestern University
<br> Tiffany Deane - Princeton University
<br> Alexandra Deli-Ivanov - Columbia University
<br> Alexis Hernandez - Rensselaer Polytechnic Institute
<br> Sumaya Khoshnobish - Brooklyn College
<br> Annabelle Lew - Harvey Mudd College
<br> Meng Ting Li - Cornell University
<br> June Lim - Boston University
<br> Mahjabin Musa - New York University
<br> Lily O Sullivan - Yale University
<br> Bernice Wang - Yale University
<br> Akaneh Wang - Princeton University
<br> Eva Yi Xie - Massachusetts Institute of Technology
<br> Erin Yan - Carnegie Mellon University
</p>
</td>
</tr>
</table>
</div>
<div class="row">
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2019</h1>
<table>
<tr>
<td>
<p class="text-center general-text-black" style="font-size: 12pt;">
Jessica Shannon - Georgetown
<br> Nancy Chen - University of Michigan
<br> Tiffany Chen - Stony Brook University
<br> Flaurencya Ciputra - Yale University
<br> Caroline Hana - Princeton University
<br> Fatiha Kamal - New York University
<br> Megan Ngo - Massachusetts Institute of Technology
<br> Jasmine Um - New York University
<br> Zoe Wong - Massachusetts Institute of Technology
<br> Marisa Wong - University of Michigan
<br> Anna Xu - University of Michigan
<br> Kang Hwu (Esther) Yie - Ecole Polytechnique Fédérale de Lausanne (EPFL Switzerland)
<br> Clara Yu - University of Michigan
<br> Jialin Zhuo - Stanford University
</p>
</td>
<td>
<img src="images/member_pics/2019Seniors.jpg" alt="2018 Seniors" height="300" width="453" align="middle">
<br>
</td>
</tr>
</table>
</div>
<div class="col s3">
</div>
<div class="col s2">
<br>
</div>
<div class="row">
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2018</h1>
<table>
<tr>
<td>
<p class="text-center general-text-black" style="font-size: 12pt;">
Natasha Stamler - Massachusetts Institute of Technology
<br> Carol (Tianyu) Shao - University of California, Berkeley
<br> Emily Zhu - New York University
<br> Julie (Chih Yu) Tung - Massachusetts Institute of Technology
<br> Rose Noggle - Worcester Polytechnic Institute
<br> Tanushree Burman - Yale University
<br> Zarrin Ali - Fordham University
</p>
</td>
<td>
<img src="images/member_pics/Old/2018Seniors.jpg" alt="2018 Seniors" height="300" width="453" align="middle">
<br>
</td>
</tr>
</table>
</div>
<div class="col s3">
</div>
<div class="col s2">
<br>
</div>
<div class="row">
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2017</h1>
<table>
<tr>
<td>
<p class="text-center general-text-black" style="font-size: 12pt;">
Charlotte Kavaler - Yale University
<br> Alex Ngan - Rensselaer Polytechnic Institute
<br> Alexis Williams - University of Maryland
<br> Carol Zhang - University of Michigan
<br> Celine (Min) Park - Princeton University
<br> Chelsea Wang - Carnegie Mellon University
<br> Eunah Song - Cornell University
<br> Ho Yi Wong - Stony Brook University
<br> Juliette Gerber - Duke University
<br> Karen Nguyen - Massachusetts Institute of Technology
<br> Kathryn Wicks - Massachusetts Institute of Technology
<br> S. Israth Wahid - Rensselaer Polytechnic Institute
</p>
</td>
<td>
<img src="images/member_pics/Old/2017Seniors.jpg" alt="2017 Seniors" height="300" width="453" align="middle">
</td>
</tr>
</table>
</div>
<div class="col s3">
</div>
<div class="col s2">
<br>
</div>
</div>
<br>
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2016</h1>
<p class="text-center general-text-black" style="font-size: 12pt;">
S. Violet Killy - Massachusetts Institute of Technology
<br> Berenice Moog - Syracuse University
<br> Gigi (Zhi Jie) Dong - Worcester Polytechnic Institute
<br> Iris Erlanger - Rensselaer Polytechnic Institute
<br> Jenny Li - Massachusetts Institute of Technology
<br> Luz Jimenez - Cornell University
<br> Risa Parham - University of Michigan
<br> Shazmin Mahmud - Columbia University
<br> Tenzin Ukyab - Massachusetts Institute of Technology
</p>
<br>
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2015</h1>
<p class="text-center general-text-black" style="font-size: 12pt;">
Kiana Dyson – California Polytechnic State University, San Luis Obispo
<br> Angelika Garcia - City College of New York
<br> Anna Gallo - Rochester Institute of Technology
<br> Ashley Lau – Stanford University
<br> Barbara Zhong - University of Michigan
<br> Breonna Liew - Northeastern University
<br> Cindy Zhuo - University of Michigan
<br> Grace Li - To Be Updated
<br> Hanna He - University of Southern California
<br> Juno Lee – University of Michigan
<br> Justina Ramlakhan - Wheaton College
<br> Mahzabin Hasnath - Columbia University
<br> Rachel Suazo - Cornell University
<br> Sabrina Law - University of Michigan
<br> Sarah Tilatitsky - Stony Brook University
<br> Stella Gomes - New York University
<br> Vicki Long - Carnegie Mellon University
<br> Yunbin Kim - Cornell University
</p>
<br>
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2014</h1>
<p class="text-center general-text-black" style="font-size: 12pt;">
Marsha Ghose - Stony Brook University
<br> Ashley Hu - New York University
<br> Carrie Wang - University of Pennsylvania
<br> Christina Joseph - Hofstra University
<br> Christine Sison - Columbia University
<br> Ivy Huang - Columbia University
<br> Joana Feng - St. John's University
<br> Makiko Iwasaki - To Be Updated
<br> Nadya Levitova - Rochester Institute of Technology
<br> Nicole (Jihyun) Jung - The Cooper Union for the Advancement of Science and Art
<br> Phoebe Wong - University of Southern California
<br> Sadia Khan - Baruch College
<br> Shella Wu - Brandeis University
<br> Xiayuan Dong- New York University
</p>
<br>
<h1 class="text-center general-text-black" style="font-size: 16pt; padding-left:145px">Class of 2013</h1>
<p class="text-center general-text-black" style="font-size: 12pt;">
Sonia Aktar - St. John's University
<br> Amy Lai - University of Michigan
<br> Amy Liu - Boston University
<br> Christine Lau - Sophie Davis School of Biomedical Education
<br> Dominique Watt - Case Western University
<br> Elaine Zhang - Bowling Green State University
<br> Juliet Eldred - University of Chicago
<br> Juliet Mullan - Carnegie Mellon University and Queens College
<br> Mindy Chen - Cornell University
</p>
<br>
<h1 class="text-center general-text-black" style="font-size: 16pt; padding-left:145px">Class of 2012</h1>
<p class="text-center general-text-black" style="font-size: 12pt;">
Nicole Calace – Cornell University
<br> Francesca Arcidiacono - Carleton College
<br> Miuki Yip - Stony Brook University
</p>
<div class="row">
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2011</h1>
<table>
<tr>
<td>
<p class="text-center general-text-black" style="font-size: 12pt;">
Leena Chan - Hunter College
<br> Dara Chen - Smith College
<br> Vicky Chen - New York University
<br> Vivian Wu - Rensselaer Polytechnic Institute
</p>
</td>
<td>
<img src="images/member_pics/2011Seniors.jpg" alt="2011 Seniors" height="300" width="453" align="middle">
</td>
</tr>
</table>
</div>
<br>
<div class="row>
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2010</h1>
<table>
<tr>
<td>
<p class="text-center general-text-black" style="font-size: 12pt;">
Qurat-ul-ain Ali - City College of New York
<br> Irene Li - St. John's University
<br> Jennifer Silvestre - Columbia University
<br> Joanna Fung - Hunter College
<br> Olivia Hon - SUNY Binghamton University
<br> Sabina Smajlaj - Columbia University
<br> Tiffany Win - Boston University
<br> Xing Jian Tian - Columbia University
</p>
</td>
<td>
<img src="images/member_pics/2010Seniors.jpg" alt="2010 Seniors" height="300" width="450" alighn="middle">
</td>
</tr>
</table>
</div>
<br>
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2009</h1>
<p class="text-center general-text-black" style="font-size: 12pt;">
Mina Min - The Cooper Union for the Advancement of Science and Art
</p>
<br>
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2008</h1>
<p class="text-center general-text-black" style="font-size: 12pt;">
Desiree Phillips - Rensselaer Polytechnic Institute
<br> Jessica Sattinger - City College of New York
<br> Stella Dennig – Tufts University
</p>
<br>
<h1 class="text-center general-text-black" style="font-size: 16pt;">Class of 2007</h1>
<p class="text-center general-text-black" style="font-size: 12pt;">
Antoinette Carey – SUNY Maritime College
<br> Alexandra Greenbaum – Rensselaer Polytechnic Institute
<br> Gena Rozenberg – Cornell University
<br> Kathleen - SUNY Binghamton University
<br> Ly Ky Tran – Columbia University
</p>
<br>
<br>
</div>
<!--<div class="col s12 m4 l12">
<br>
</div>-->
</li>
<li>
<div class="collapsible-header active">Awards</div>
<div class="collapsible-body">
<div class="row">
</div>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2020</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
New York & Québec Region Championship Level - Chairman's Award
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2019</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
NYC Regional - Winner
<br> NYC Regional - Entrepreneurship Award
<br> Hudson Valley Regional - Quarter Finalist
<br> Hudson Valley Regional - Team Spirit Award
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2018</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
NYC Regional - Engineering Inspiration Award
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2017</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
NYC Regional - Semi Finalist
<br> NYC Regional - Imagery Award
<br> Hudson Valley Regional - Quarter Finalist
<br> World Maker Faire - Editor's Choice Blue Ribbon
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2016</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
World Maker Faire - Editor's Choice Blue Ribbon
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2012</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
NYC Regional - Quarter Finalist
<br> NYC Regional - Imagery Award
<br> World Maker Faire - Editor's Choice Blue Ribbon
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2011</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
NYC Regional - Semi Finalist
<br> NYC Regional - Entrepreneurship Award
<br> New Jersey Regional - Dean's List Finalist
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2010</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
NYC Regional - Champion
<br> NYC Regional - Engineering Inspiration Award
<br> New Jersey Regional - Imagery Award
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2009</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
Connecticut Regional - Best Website
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2008</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
NYC Regional - Quarter Finalist
</p>
<br>
<h1 class="text-center general-text-white" style="font-size: 16pt;">2007</h1>
<p class="text-center general-text-white" style="font-size: 12pt;">
NYC Regional - Rookie All Star Award
<br> NYC Regional - Quarter Finalist
</p>
<div class="col s12 m4 l12">
<br>
</div>
</div>
</div>
</li>
</div>
<!-- Begin Footer -->
<footer class="page-footer deep-purple lighten-2 light">
<div class="container">
<div class="row">
<!-- First Column -->
<div class="col l2 s3">
<h5 class="white-text">Team</h5>
<ul>
<li><a class="white-text" href="mission.html">Mission</a></li>
<li><a href="history.html" class="white-text">History</a></li>
<li><a class="white-text" href="members.html">Members</a></li>
<li><a class="white-text" href="mentors.html">Mentors</a></li>
<li><a class="white-text" href="sponsors.html">Sponsors</a></li>
</ul>
<h5><a class="white-text" href="first.html">FIRST</a></h5>
</div>
<!-- Second Column -->
<div class="col l2 s3">
<h5 class="white-text">Media</h5>
<ul>
<li><a class="white-text" href="photos.html">Photos</a></li>
<li><a class="white-text" href="videos.html">Videos</a></li>
<li><a class="white-text" href="publicity.html">Publicity</a></li>
<li><a class="white-text" href="resources.html">Resources</a></li>
</ul>
<h5 class="white-text"><a class="white-text" href="https://femaidens.wordpress.com/">Blog</a></h5>
</div>
<!-- Third Column -->
<div class="col l4 s6">
<h5 class="white-text">Contact Us</h5>
<p class="white-text">Address: 75 West 205th Street
<br>Bronx, NY 10468
<br>Phone: 718-817-7700
<br>Email: [email protected]</p>
</div>
<!-- Fourth Column -->
<div class="col l4 s12">
<h5 class="white-text">Connect</h5>
<div>
<a href="https://www.facebook.com/FRCTeam2265"><img class="grow" src="images/social_media_icons/Facebook.png" alt="Facebook"
style="padding-right:15px; padding-bottom:8px;"></a>
<a href="https://twitter.com/FeMaidens"><img class="grow" src="images/social_media_icons/Twitter.png" alt="Twitter" style="padding-right:15px; padding-bottom:8px;"></a>
<a href="http://www.flickr.com/people/109130586@N05/"><img class="grow" src="images/social_media_icons/Flickr.png" alt="Flickr" style="padding-bottom:8px;"></a>
<br>
<a href="https://github.com/femaidens"><img class="grow" src="images/social_media_icons/Github.png" alt="GitHub" style="padding-right:15px;"></a>
<a href="https://www.instagram.com/femaidens/"><img class="grow" src="images/social_media_icons/Instagram.png" alt="Instagram"
style="padding-right:15px;"></a>
<a href="https://www.youtube.com/channel/UCh6Eyb-Rstrllyne_4NY4YA?ab_channel=FeMaidens"><img class="grow" src="images/social_media_icons/YouTube.png" alt="YouTube"></a>
</div>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2006 - 2017 Fe Maidens | All Rights Reserved | <a href="credits.html" class="white-text">Credits</a>
</div>
</div>
</footer>
<!-- End footer -->
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>