-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
478 lines (452 loc) · 23.2 KB
/
Copy pathindex.html
File metadata and controls
478 lines (452 loc) · 23.2 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
<!--Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Everybody Code Now! | Empowering the Next Generation of Leaders in Computing</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico filled.png.ico" /> <!-- new favicon-->
<!--<link rel="icon" type="image/x-icon" href="images/favicon.ico" /> -->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-1.11.0.min.js"></script>
<!-- Custom Theme files -->
<link href="css/style.css" rel="stylesheet" type="text/css" media="all"/>
<!-- Custom Theme files -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); }>
</script>
<meta name="keywords" content="" />
<!--Google Fonts-->
<!-- start-smoth-scrolling -->
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
<!-- //end-smoth-scrolling -->
<!---pop-up-box---->
<link href="css/popuo-box.css" rel="stylesheet" type="text/css" media="all"/>
<script src="js/jquery.magnific-popup.js" type="text/javascript"></script>
<!---//pop-up-box---->
<script>
$(document).ready(function() {
$('.popup-with-zoom-anim').magnificPopup({
type: 'inline',
fixedContentPos: false,
fixedBgPos: true,
overflowY: 'auto',
closeBtnInside: true,
preloader: false,
midClick: true,
removalDelay: 300,
mainClass: 'my-mfp-zoom-in'
});
});
</script>
<script>
$(function () {
$('[data-toggle="popover"]').popover()
})
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</head>
<body>
<!--header start here-->
<div class="header">
<div class="container">
<div class="header-top">
<a href="index.html"><span class="left logo"><big>Everybody Code Now!</big></span></a>
<div class="top-navg">
<nav class="cl-effect-1">
<ul class="res">
<li><a class="scroll active" href="#home">Home</a></li>
<li><a class="scroll" href="#about">About</a></li>
<li><a class="scroll" href="#services">Programs</a></li>
<li><a class="scroll" href="#team">Team</a></li>
<!--li><a class="scroll" href="#portfolio">Gallery</a></li-->
<li><a class="scroll" href="#contact">Contact</a></li>
</ul>
</nav>
<!-- script-for-menu -->
<script>
$( "span.menu" ).click(function() {
$( "ul.res" ).slideToggle( 300, function() {
// Animation complete.
});
});
</script>
<!-- /script-for-menu -->
</div>
<div class="clearfix"> </div>
</div>
<div class="banner">
<h1>Everybody Code Now!</h1>
<p>Everybody Code Now! works to empower the next generation of youth through exposure to basic programming skills.</p>
<br>
<a class="btn btn-xl btn-primary scroll" href="#about">Learn More!</a>
</div>
</div>
</div>
<!--header end here-->
<!--weare start here-->
<div class="weare" id="about">
<div class="container">
<div class="weare-main">
<h2>About Everybody Code Now!</h2>
<img src="images/circles.png" alt="">
<p>Everybody Code Now! Is a non-profit organization that works to empower the next generation of leaders in computing to transform their future and help lead their communities towards a new era of technical expertise and entrepreneurship from exposure to basic programming skills. Through Everybody Code Now’s various camps, workshops, and mentorship opportunities, Everybody Code Now shows students that with determination, hard work, and a couple lines of code, the future is theirs for the making.</p>
<br>
<a class="btn btn-xl btn-primary" href="http://goo.gl/forms/I7zt8DPNdn">Get Involved!</a>
</div>
</div>
</div>
</div>
<!--weare end here-->
<!--about strat here
<div class="about">
<div class="container">
<div class="about-main">
<div class="col-md-6 ab-left">
<h4>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit</h4>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia cons equuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt</p>
</div>
<div class="col-md-6 ab-right">
<img src="images/break.jpg" alt="" class="img-responsive">
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
about end here-->
<!--work start here-->
<div class="work" id="services">
<div class="container">
<div class="work-main">
<div class="work-top">
<h3>Our Programs</h3>
<p></p>
</div>
<div class="work-grids">
<div class="col-md-4 work-gd1">
<img src="images/w1.jpg" alt="" class="img-responsive" data-toggle="modal" data-target="#sparkit">
</div>
<div class="col-md-4 work-gd1">
<img src="images/w2.jpg" alt="" class="img-responsive" data-toggle="modal" data-target="#cs-chicas" >
</div>
<div class="col-md-4 work-gd1">
<img src="images/CodeLeadersWeb.png" alt="" class="img-responsive" data-toggle="modal" data-target="#codeleaders">
</div>
<!-- <div class="col-md-4 work-gd1">
<img src="images/w3.jpg" alt="" class="img-responsive" data-toggle="modal" data-target="#css-chicas">
</div>-->
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<!--we do start here
<div class="wedo">
<div class="container">
<div class="wedo-main">
<h3>What We Do</h3>
<img src="images/circles.png" alt=""/>
</div>
<div class="wedo-center">
<div class="col-md-4 wedo-grid">
<span class="glyphicon glyphicon glyphicon-user"> </span>
<h4><a href="#">Yawing</a></h4>
<p>Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo</p>
</div>
<div class="col-md-4 wedo-grid">
<span class="glyphicon glyphicon glyphicon-time"> </span>
<h4><a href="#">Procrastinating</a></h4>
<p>Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim</p>
</div>
<div class="col-md-4 wedo-grid">
<span class="glyphicon glyphicon glyphicon-off"> </span>
<h4><a href="#">Napping</a></h4>
<p>Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam litte</p>
</div>
</div>
</div>
</div>
we do end here-->
<!--team start here-->
<div class="team" id='team'>
<div class="container wrapper">
<div class="team-top">
<h3>Our Team</h3>
<img src="images/circles.png" alt=""/>
</div>
<div class="team-bottom">
<div class="friend">
<div class="col-md-4 friend-img"><img src="images/t1.jpg" class="img-responsive" alt=""/></div>
<div class="col-md-8 friend-desc">
<h3><a href="">Swetha Prabakaran</a></h3>
<h4>Founder and CEO</h4>
<p>
Before her freshman year of high school, Swetha had no idea what Computer Science entailed and never imagined that one day she’d be teaching kids to code. However, she took a Java class in 9th grade and hasn’t looked back since.
<br>
Currently a senior at Thomas Jefferson High School for Science and Technology (TJHSST), Swetha takes application development courses and works in her school’s Mobile and Web Application Development Laboratory. She hopes to major in Computer Science in college. She loves using technology to benefit the community, and loves inspiring students to do the same even more!
<br>
Swetha is an active member of her school's Model UN Team and chapter of FBLA, and is also a member of the swim and dive team. She has been learning Bharathanatyam, a form of classical South Indian dance, for more than half of her life. In her free time, Swetha loves listening to music, reading, baking, and making really bad puns.</p>
</div>
<div class="clearfix"> </div>
</div>
<div class="friend">
<div class="col-md-8 friend-desc1">
<h3><a href="">Shannon Yan</a></h3>
<h4>West Coast Director </h4>
<!--<h4>CSS Chicas Director</h4>-->
<p>
Born in the heart of Silicon Valley, Shannon Yan was always surrounded by computer science but didn’t realize her passion for it until her sophomore year of high school when she took an Intro to Computing class. Inspired by influential women such
as Sheryl Sandberg and Reshma Saujani, she quickly dove into the field and started coding her own projects whenever she had the chance. What fascinates her most about programming is that anyone who learns to code instantly has the opportunity to
create a positive change in the world as well as gains the ability to enable and empower others. As the West Coast Director<!--national director of CSS Chicas-->, she hopes to pay it forward by enabling other girls her age to discover their love for coding
and in the process better their communities as well. In the near future, Shannon hopes to start her own tech company in Silicon Valley geared towards providing internet and computer access to people in developing countries and to show young women
that anyone can be a CEO. In her free time, Shannon loves kickboxing, reading self-help novels, dancing to her favorite Taylor Swift songs, competing in SWAT competitions, and serving as captain of her high school’s cheerleading team!</p>
</div>
<div class="col-md-4 friend-img"><img src="./beta/images/headshots/Shannon Yan.jpg" class="img-responsive" alt=""/></div>
<div class="clearfix"> </div>
</div>
<div class="friend">
<div class="col-md-4 friend-img1"><img src="./beta/images/headshots/Kimberly Do.png" class="img-responsive" alt=""/></div>
<div class="col-md-8 friend-desc1">
<h3><a href="">Kimberly Do</a></h3>
<h4>Director of Design</h4>
<p>
Kimberly Do is a sophomore at her school's International Baccalaureate Program. In middle school, she self-studied HTML and CSS as she began to nurture her growing fascination for computer science. Eventually, as she entered high school, she
advocated for computer science programs at her school, joined science, robotics, and math clubs, and won an Affiliate Award from the NCWIT. These days, she dabbles in web design and illustration whenever she isn't busy with a variety of club
activities.
</p>
</div>
<div class="clearfix"> </div>
</div>
<div class="friend">
<div class="col-md-8 friend-desc">
<h3><a href="">Laura Sizemore</a></h3>
<h4>East Coast Director</h4>
<p>
Until high school, Laura Sizemore thought she would never be interested in Computer Science. That all changed her
freshman year when she took the JavaScript course on Khan Academy and fell in love with programming.
Currently a senior at Lake Braddock Secondary School, she has completed the AP Computer Science A class, is one
of the two officers of her school’s programming club, is a 2015 and 2016 #Include Fellow, and is a National
Center for Women in Technology (NCWIT) Aspirations in Computing Regional Runner Up. Laura realizes how blessed
she is to learn computer science,and wants to create opportunities for others to become as passionate about coding
as she is. Through her work in Everybody Code Now!, she works to make that goal a reality. In her free time, she is
performing in her school’s color guard, acting for her school’s theater, and spending time with friends.
</p>
</div>
<div class="col-md-4 friend-img1"><!--<img src="./beta/images/headshots/Yashwee Kothari.jpg" class="img-responsive" alt=""/>--></div>
<div class="clearfix"> </div>
</div>
<!--<div class="friend">
<div class="col-md-8 friend-desc1">
<h3><a href="">Yashwee Kothari</a></h3>
<h4>CodeLeaders Director</h4>
<p>Yashwee is a sophomore at Morris County School of Technology in the Academy of Computer and Information Sciences. Her interest in computer science first began in 7th grade in her Robotics class. Yashwee is proficient in Java, HTML and CSS.
Whenever she has time, she loves to code websites and programs. Yashwee is the co-Founder and Director of her school’s first hackathon, hackMCST, and is also 2015 and 2016 New Jersey NCWIT Affiliate Award Recipient. As the national director of
CodeLeaders, Yashwee aspires to make CodeLeaders a program where not only can students learn, but also have the opportunities to show their skills. She hopes that this program will help engender a community of programmers around the nation and help
today’s students become the CodeLeaders of tomorrow. In her free time, Yashwee enjoys listening to music, watching movies, or surfing the internet.</p>
</div>
<div class="col-md-4 friend-img1"><img src="./beta/images/headshots/Yashwee Kothari.jpg" class="img-responsive" alt=""/></div>
<div class="clearfix"> </div>
</div>-->
</div>
</div>
</div>
<!--team end here-->
<!--gallery start here-->
<!-- div class="gallery" id="portfolio">
<div class="container">
<div class="gallery-main">
<div class="gallery-top">
<h3>Gallery</h3>
<img src="images/circles.png" alt=""/>
</div>
<div class="gallery-bottom">
<div class="col-md-4 gallery-left">
<a href="images/g1.jpg" rel="title" class="mask">
<img src="images/g1.jpg" alt="" class="img-responsive zoom-img">
</a>
</div>
<div class="col-md-4 gallery-left">
<a href="images/g2.jpg" rel="title" class="mask">
<img src="images/g2.jpg" alt="" class="img-responsive zoom-img">
</a>
</div>
<div class="col-md-4 gallery-left">
<a href="images/g3.jpg" rel="title" class="mask">
<img src="images/g3.jpg" alt="" class="img-responsive zoom-img">
</a>
</div>
<div class="col-md-4 gallery-left">
<a href="images/g4.jpg" rel="title" class="mask">
<img src="images/g4.jpg" alt="" class="img-responsive zoom-img">
</a>
</div>
<div class="col-md-4 gallery-left">
<a href="images/g5.jpg" rel="title" class="mask">
<img src="images/g5.jpg" alt="" class="img-responsive zoom-img">
</a>
</div>
<div class="col-md-4 gallery-left">
<a href="images/g6.jpg" rel="title" class="mask">
<img src="images/g6.jpg" alt="" class="img-responsive zoom-img">
</a>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
</div>
<!--gallery end here-->
<!--light-box-files -->
<script src="js/jquery.chocolat.js"></script>
<link rel="stylesheet" href="css/chocolat.css" type="text/css" media="screen" charset="utf-8">
<!--light-box-files -->
<script type="text/javascript" charset="utf-8">
$(function() {
$('.gallery-bottom a').Chocolat();
});
</script>
<!--contact start here-->
<div class="contact" id="contact">
<div class="container">
<div class="row">
<div class="text-center col-sm-12">
<a class="btn btn-xl btn-primary" href="http://goo.gl/forms/I7zt8DPNdn">Contact Us!</a>
</div>
</div>
</div>
</div>
<!--contact end here-->
<!--copyrights start here-->
<div class="copy-rights">
<div class="container">
<div class="copy-right-main">
<ul>
<li><a href="https://www.facebook.com/everybodycodenow"><span class="fa"></span></a></li>
<li><a href="https://twitter.com/everybody_code"><span class="tw"> </span></a></li>
</ul>
<p>© 2015 Stylo All rights reserved | Everybody Code Now! | <a href="http://goo.gl/forms/I7zt8DPNdn">Get Involved</a> | <a href="http://goo.gl/forms/Nrs0INBsXQ">Mentor a Program</a></p>
<div class="clearfix"> </div>
</div>
<script type="text/javascript">
$(document).ready(function() {
/*
var defaults = {
containerID: 'toTop', // fading element id
containerHoverID: 'toTopHover', // fading element hover id
scrollSpeed: 1200,
easingType: 'linear'
};
*/
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
<a href="#" id="toTop" style="display: block;"> <span id="toTopHover" style="opacity: 1;"> </span></a>
</div>
</div>
<!--copyright end here-->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/wow.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/creative.js"></script>
<!-- modal start here -->
<!-- Modal -->
<div class="modal fade" id="sparkit" tabindex="-1" role="dialog" data-backdrop="false" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">SparkIT</h4>
</div>
<div class="modal-body">
<p><big> <italics>Our most popular program structure that works extremely well in schools! </italics></big></p>
<br>
<p><big>SparkIT programs come with curriculum and teaching materials designed so that ANYONE can teach a course!
They work best for after-school clubs/camps designed to run for multiple weeks. Themes range from block-based algorithmic thinking to specific languages.</big> </p>
<br>
<p><big><italics>We work directly with educators to modify lesson plans to fit each school’s needs. Please contact us for more information.</italics></big></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary btn-xl" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="cs-chicas" tabindex="-1" role="dialog" data-backdrop="false" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel"> CS Chicas</h4>
</div>
<div class="modal-body">
<p><big>CS Chicas is a national program geared toward introducing middle school girls to computer science. It is common knowledge that the gender gap in computer science is a problem. We believe that all girls should be exposed to computer science in their middle school years regardless of financial situations. CS Chicas brings together a network of young high school woman to reach out to mentor middle school girls at no cost to the host school or local students. Our volunteer mentors are motivated to share their coding skills and knowledge with the next generation of young girls, by passing on their coding expertise and being a role model.</big></p>
<p><big><italics>Many of these programs are run in partnership with the National Center for Women and Information Technology AspireIT program.</italics></big></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary btn-xl" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="codeleaders" tabindex="-1" role="dialog" data-backdrop="false" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">CodeLeaders</h4>
</div>
<div class="modal-body">
<p><big>CodeLeaders workshops are workshops by students, for students. Each program focuses on introducing a specific language (HTML,CSS,Python, etc) and run for a few hours each week. Each track has multiple levels of curriculum, giving workshop leaders flexibility in choosing how many languages they would like to cover and how in depth they would like to go. </big></p>
<br>
<p><big><italics>Works well for libraries, community centers, conferences, and guest workshops at events! Please contact us for more information!</italics></big></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary btn-xl" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<!--<div class="modal fade" id="css-chicas" tabindex="-1" role="dialog" data-backdrop="false" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">CSS Chicas</h4>
</div>
<div class="modal-body">
<p><big>CSS Chicas is a national program aimed at teaching high school girls essential web development languages such as HTML and CSS, as well as Django and Bootstrap. Students are also immersed in lessons focused on web design and given the opportunity to listen to a variety of guest speakers. With these web development tools under their belt, young women are enabled to create a final project aimed at bettering their own community at the end of the program. By learning all the necessary tools to be a web developer, and these young women are more empowered as individuals and have gained new tools to positively change their communities.</big></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary btn-xl" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>-->
<!-- modal end here -->
</body>
</html>