-
Notifications
You must be signed in to change notification settings - Fork 2
/
first.html
591 lines (556 loc) · 37.3 KB
/
first.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
<!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">
<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>FIRST | 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 -->
<div class="container">
<h2 class="center-align">FIRST</h2>
<!-- Begin FIRST content -->
<div class="row">
<div class="col s12 m9 l10">
<div id="about-first" class="section scrollspy" style="margin-top: -30px;">
<h4 class="left-align">About FIRST</h4>
<img src="images/first_logos/FirstLogoVertical.png" alt="First Logo Vertical" class="col s12 m4 l4">
<p style="text-indent: 5em; text-align: justify;">FIRST<sup>®</sup> (For Inspiration and Recognition of Science and Technology)
was founded by Dean Kamen in 1989 to motivate young people’s interests and participation
in STEM (Science, Technology, Engineering, & Mathematics). Dean Kamen is an amazing
inventor, entrepreneur and hardworking advocate for STEM. He is determined to
help young people discover the benefits and rewards of science and technology.</p>
<p style="text-indent: 5em; text-align: justify;">FIRST<sup>®</sup> incorporates a Progression of Programs that is designed to
encourage students to participate in STEM throughout their school years. The
different programs are as follows: Jr.FLL<sup>®</sup> (Junior FIRST<sup>®</sup> LEGO<sup>®</sup> League), FLL (FIRST<sup>®</sup> LEGO<sup>®</sup> League), FTC (FIRST<sup>®</sup> Tech Challenge), and FRC (FIRST<sup>®</sup> Robotics Competition). Students can participate in these programs from the ages
of 6-18, and develop an affinity to STEM while helping them gain self-confidence
and develop skills to help them in the future.</p>
</div>
<div id="current-game" class="section scrollspy">
<h4 class="left-align">Current Game: Infinite Recharge</h4>
<p> <img src="images\game_logos\Infiniterechargelogopng.png" style="width:200px;height:150px;" align="left" border="10px">
"In INFINITE RECHARGESM, two alliances work to protect FIRST City from approaching asteroids caused by a distant space skirmish. Each Alliance, along with their trusty droids, race to collect and score Power Cells in order to energize their Shield Generator for maximum protection. To activate stages of the Shield Generator, droids manipulate their Control Panels after scoring a specific number of Power Cells. Near the end of the match, droids race to their Rendezvous Point to get their Shield Generator operational in order to protect the city!"</p>
</div>
<br>
<br>
<h4 class="align-left"> Past Games</h4>
<div id="past-games" class="section scrollspy">
<div class="row">
<ul class="collapsible popout" data-collapsible="accordion">
<li>
<div class="collapsible-header active">2019: Deep Space</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images\game_logos\2019Logo.png" alt="Power Up" class="col s12 m4 l3">
<p class="col s12 m4 l9"> The game involves two alliances of three teams each competing to place hatch covers and rubber balls or “cargo” on rockets and cargo ships before returning to their hab platform to climb at the end of the match. </p>
<div class="col s12 m4 l4" style="margin-top: 5px">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/Mew6G_og-PI" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
<img src="images\past_robots\2019_robot.jpg" alt="2019 Robot" class="col s12 m4 l4" style="margin-top: 5px">
<div class="col s12 m4 l1">
<br>
</div>
<p class="col s12 4 l9"> <a href="https://femaidens.github.io/Website/resources/2017 Technical Binder.pdf"><b>View Technical Binder</b></a> </p>
</div>
</div>
</li>
<li>
<div class="collapsible-header active">2018: Power Up</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2018PowerUp.jpg" alt="Power Up" class="col s12 m4 l3">
<p class="col s12 m4 l9"> The game has a retro 8-bit theme and teams are required to
place milk crates, or "power cubes", on large balancing scales
to tip the scale and gain ownership </p>
<div class="col s12 m4 l4" style="margin-top: 5px">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/HZbdwYiCY74" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
<img src="images/past_robots/2018Robot.JPG" alt="2018 Robot" class="col s12 m4 l4" style="margin-top: 5px">
<div class="col s12 m4 l1">
<br>
</div>
<p class="col s12 4 l9"> <a href="https://femaidens.github.io/Website/resources/2017 Technical Binder.pdf"><b>View Technical Binder</b></a> </p>
</div>
</div>
</li>
<li>
<div class="collapsible-header active">2017: Steamworks</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2017Steamworks.png" alt="2017 Steamworks" class="col s12 m4 l3">
<p class="col s12 m4 l9"> Two adventure clubs from an era in which technology relied on steam power prepare their airships for the ultimate long distance race.</p>
<div class="col s12 m4 l4" style="margin-top: 5px">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/EMiNmJW7enI" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
<img src="images/past_robots/2017Robot.jpg" alt="2017 Robot" class="col s12 m4 l4" style="margin-top: 5px">
<div class="col s12 m4 l1">
<br>
</div>
<p class="col s12 4 l9"> <a href="https://femaidens.github.io/Website/resources/2017 Technical Binder.pdf"><b>View Technical Binder</b></a> </p>
</div>
</div>
</li>
<li>
<div class="collapsible-header active">2016: Stronghold</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2016Stronghold.jpg" alt="2016 Stronghold" class="col s12 m4 l3">
<p class="col s12 m4 l9">Alliances aim to breach the other team's defenses and take down
their castle by scoring boulders in their goals and scaling
their towers.</p>
<div class="col s12 m4 l12">
</div>
<div class="col s12 m4 l3">
<br>
</div>
<div class="col s12 m4 l4">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/VqOKzoHJDjA" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<img src="images/past_robots/2016Robot.JPG" alt="2016 Robot" class="col s12 m4 l4">
<div class="col s12 m4 l1">
<br>
</div>
</div>
</div>
</li>
<li>
<div class="collapsible-header active">2015: Recycle Rush</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2015RecycleRush.png" alt="2015 Recycle Rush" class="col s12 m4 l3">
<p class="col s12 m4 l9">Alliances aim to score points by stacking totes and containers
on top of each other. Extra points are awarded for higher
stacks and coopertition. Litter can be placed in the containers
for even more points.</p>
<div class="col s12 m4 l12">
<br>
</div>
<div class="col s12 m4 l3">
<br>
</div>
<div class="col s12 m4 l4">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/W6UYFKNGHJ8" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<img src="images/past_robots/2015Robot.jpg" alt="2015 Robot" class="col s12 m4 l2">
<div class="col s12 m4 l3">
<br>
</div>
</div>
</div>
</li>
<li>
<div class="collapsible-header active">2014: Aerial Assist</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2014AerialAssist.png" alt="2014 Aerial Assist" class="col s12 m4 l3">
<p class="col s12 m4 l9">Two alliances of three teams score points by shooting balls into
the goals on a 25inch x 54inch field with a truss that is
5 feet over the field. More points are given to alliances
that work together and score more balls.
</p>
<div class="col s12 m4 l12">
</div>
<div class="col s12 m4 l3">
<br>
</div>
<div class="col s12 m4 l4">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/oxp4dkMQ1Vo" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<img src="images/past_robots/2014Robot.jpg" alt="2014 Robot" class="col s12 m4 l2">
<div class="col s12 m4 l3">
<br>
</div>
</div>
</div>
</li>
<li>
<div class="collapsible-header">2013: Ultimate Ascent</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2013UltimateAscent.jpg" alt="2013 Ultimate Ascent" class="col s12 m4 l3">
<p class="col s12 m4 l9">Two alliances use their robots to shoot as many frisbee discs
into the different goals. At the end of the match the robots
must attempt to climb as high as they can up a pyramid in
the middle of the field.</p>
<div class="col s12 m4 l12">
<br>
</div>
<div class="col s12 m4 l3">
<br>
</div>
<div class="col s12 m4 l4">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/itHNW2OFr4Y" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<img src="images/past_robots/2013Robot.jpg" alt="2013 Robot" class="col s12 m4 l4">
<div class="col s12 m4 l2">
<br>
</div>
</div>
</div>
</li>
<li class="active">
<div class="collapsible-header active">2012: Rebound Rumble</div>
<div class="collapsible-body" style="display: block;">
<div class="row">
<div class="col s12 m4 l12" style="float: left; clear: right;">
</div>
<img src="images/game_logos/2012ReboundRumble.png" alt="2012 Rebound Rumble" class="col s12 m4 l3">
<p class="col s12 m4 l9">Two alliances of three teams competed to score as many basketballs
as possible within a time limit. Teams scored more on higher
hoops. Both alliances would gain extra points if they worked
together to balance on the Coopertition<sup>®</sup> bridge.</p>
<div class="col s12 m4 l12">
<br>
</div>
<div class="col s12 m4 l3">
<br>
</div>
<div class="col s12 m4 l4">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/-bRXOTLQvoE" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
<img src="images/past_robots/2012Robot.jpg" alt="2012 Robot" class="col s12 m4 l4">
<div class="col s12 m4 l2">
<br>
</div>
</div>
</div>
</li>
<li>
<div class="collapsible-header">2011: Logo Motion</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2011LogoMotion.jpg" alt="2011 Logo Motion" class="col s12 m4 l3">
<p class="col s12 m4 l9">The robots of two alliances, made up of three teams, placed as
many pieces resembling the three different shapes of the
FIRST logo, a triangle, a circle, and a quare, onto poles.
Extra points were given if the shapes were in the order of
the FIRST logo and if the team’s Mini-Bots could climb up
the poles.</p>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="col s12 m4 l3">
<br>
</div>
<div class="col s12 m4 l4">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/oxujTCgQPgg" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<img src="images/past_robots/2011Robot.jpg" alt="2011 Robot" class="col s12 m4 l4">
<div class="col s12 m4 l2">
<br>
</div>
</div>
</div>
</li>
<li>
<div class="collapsible-header">2010: Breakaway</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2010Breakaway.png" alt="2010 Breakaway" class="col s12 m2 3">
<p class="col s12 m4 l9">Two alliances comprised of three teams earned points by collecting
soccer balls in goals on a 27-by-54-foot field.</p>
<div class="col s12 m4 l4" style="margin-top: 3px" style="margin-left: 5px">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/iheq7yar5c4" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
<img src="images/past_robots/2010Robot.jpg" alt="2010 Robot" class="col s12 m3 12">
<div class="col s12 m3 3">
<br>
</div>
</div>
</div>
</li>
<li>
<div class="collapsible-header">2009: Lunacy</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2009Lunacy.jpg" alt="2009 Lunacy" class="col s12 m2 3">
<p class="col s12 m4 l9">Robots had to play on a special playing field with a slick polymer material caled regolith, intended to imitate the surface of the moon. Teams scored points by shooting different types of balls, called cells, into opposing team's robots.</p>
<div class="col s12 m4 l2" style="margin-top: 3px" style="margin-left: 5px">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/fyER3MrNBZQ" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
<img src="images/past_robots/2009Robot.jpg" alt="2009 Robot" class="col s12 m3 12">
<div class="col s12 m3 3">
<br>
</div>
</div>
</div>
</li>
<li>
<div class="collapsible-header">2008: Overdrive</div>
<div class="collapsible-body">
<div class="row">
<img src="images/game_logos/2008Overdrive.JPG" alt="2008 Overdrive" class="col s12 m4 l2">
<p class="col s12 m4 l9">Robots had to knock down and move 40-inch inflated balls around
a track. Teams scored points by throwing the balls over a
6-foot 6-inch overpass.</p>
<div class="col s12 m4 l2">
<br>
</div>
<div class="col s12 m4 l4">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/LYnUDaEi1D8" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="collapsible-header">2007: Rack N' Roll</div>
<div class="collapsible-body">
<div class="row">
<div class="col s12 m4 l12">
<br>
</div>
<img src="images/game_logos/2007RackNRoll.jpg" alt="2007 Rack N' Roll" class="col s12 m4 l3">
<p class="col s12 m4 l9">Robots scored points by hanging inflated colored tubes on pegs
attached to a 10-foot rack structure.</p>
<br>
<br><br>
<div class="col s12 m4 l4">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/6Voyz1Kfzoc" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
<img src="images/past_robots/2007Robot.jpg" alt="2007 Robot" class="col s12 m4 l2">
<div class="col s12 m4 l2">
</div>
<br>
</div>
<br>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Begin FIRST table of contents -->
<div class="col hide-on-small-only m3 l2">
<ul class="section table-of-contents fixed">
<li><a href="#about-first" class="active">About FIRST</a></li>
<li><a href="#current-game">Current Game</a></li>
<li><a href="#past-games">Past Games</a></li>
</ul>
</div>
<!-- End FIRST table of contents -->
</div>
<!-- End FIRST content -->
</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>
<li><a class="white-text" href="calendar.html">Calendar</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>