-
Notifications
You must be signed in to change notification settings - Fork 69
/
index.html
executable file
·1273 lines (1204 loc) · 73.9 KB
/
index.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
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
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<link rel="icon" type="image/png" sizes="96x96" href="images/gcd-favicon-96x96.png">
<title>Girls Coding Day</title>
<!-- Plugins style -->
<link href="plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.theme.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.transitions.css" rel="stylesheet">
<link href="plugins/pe-icon-7-stroke/css/pe-icon-7-stroke.css" rel="stylesheet">
<link href="plugins/lightbox2/dist/css/lightbox.min.css" rel="stylesheet">
<!--template style-->
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script>
(function(i, s, o, g, r, a, m) {
i["DaoVoiceObject"] = 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;
a.charset = "utf-8";
m.parentNode.insertBefore(a, m)
})(window, document, "script", ('https:' == document.location.protocol ? 'https:' : 'http:') + "//widget.daovoice.io/widget/925c1fb3.js", "daovoice")
daovoice('init', {
app_id: "8b3d964e"
});
daovoice('update');
</script>
</head>
<body data-spy="scroll" data-offset="70" data-target=".navbar">
<!--welcome section start-->
<section id="home" class="full-screen parallax-bg" data-stellar-background-ratio="0.5">
<div class="display-table">
<div class="verticle-middle">
<div class="container text-center">
<h1 class="text-uppercase text-white">Girls Coding Day</h1>
<!-- <h2 class="text-white">公主靠美颜 <b>女王爱Coding</b></h2> -->
<div class="buttons smooth-scroll">
<!-- <a class="button" href="https://college2018.girlscodingday.org/" style="display:inline-block;text-decoration:none;background-color:rgb(42, 238, 140);color:white;cursor:pointer;font-family:Helvetica,Arial,sans-serif;font-size:20px;line-height:50px;text-align:center;margin:0;height:50px;padding:0px 33px;border-radius:25px;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;"
target="_blank">In College</a> -->
<br/>
<a class="button" href="http://codingirlsclub.com" style="display:inline-block;text-decoration:none;background-color:rgb(42, 238, 140);color:white;cursor:pointer;font-family:Helvetica,Arial,sans-serif;font-size:20px;line-height:50px;text-align:center;margin:0;height:50px;padding:0px 33px;border-radius:25px;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;"
target="_blank">Hosted by Coding Girls Club</a>
<div class="modal fade signup-wechat" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-body chapter-share__qrcode">
<img src="images/codingirls-wechat.jpg" />
</div>
</div>
</div>
<br/>
<a href="https://jinshuju.net/f/s1v1QY" class="btn btn-theme-bg btn-lg">教练预报名</a>
<!-- <a href="#" data-toggle="modal" data-target="#videoModal" class="btn btn-white-border btn-lg">观看视频</a> -->
</div>
</div>
</div>
</div>
</section>
<!--welcome section end-->
<!--main navigation start-->
<!-- Static navbar -->
<nav class="navbar navbar-inverse navbar-sticky navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://girlscodingday.org/">Girls Coding Day</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right smooth-scroll">
<li class="active navlink"><a href="#home">首页</a></li>
<li class="navlink"><a href="#about">介绍</a></li>
<!-- <li class="navlink"><a href="#schedule">学习内容</a></li> -->
<li class="navlink"><a href="#volunteers">志愿者</a></li>
<li class="navlink"><a href="#pricing">承诺费</a></li>
<li class="navlink"><a href="#host">合作伙伴</a></li>
<li class="navlink"><a href="#sponsors">赞助商</a></li>
<li class="navlink"><a href="#community-partner">合作社区</a></li>
<li class="navlink"><a href="portfolios.html">学员作品集</a></li>
<li class="city-dropdown">
<a data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
活动 <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<!-- <li><a href="worldquant.html">WorldQuant</a></li> -->
<li><a href="worldquant.html">WorldQuant</a></li>
<li><a href="wuhan.html">武汉</a></li>
<li><a href="shanghai.html">上海</a></li>
<li><a href="guangzhou.html">广州</a></li>
<li><a href="hangzhou.html">杭州</a></li>
<li><a href="chengdu.html">成都</a></li>
<li><a href="beijing.html">北京</a></li>
<li><a href="shenzhen.html">深圳</a></li>
<li><a href="dalian.html">大连</a></li>
<li><a href="nanjing.html">南京</a></li>
<li><a href="xian.html">西安</a></li>
<li><a href="chongqing.html">重庆</a></li>
</ul>
</li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
<!--/.container-fluid -->
</nav>
<!--end main navigation-->
<!--start about section-->
<section id="about" class="padded-top-70">
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="center-title">
<h1>活动介绍</h1>
<br>
<p class="lead">
联合国设定2月11日为 <a href="http://www.un.org/zh/events/women-and-girls-in-science-day/" class="text-info">女性和女童参与科学国际日</a>, 联合国秘书长安东尼奥·古特雷斯号召:
<br>
<blockquote>
<p>
值此国际日,我敦促各方致力于消除偏见,为所有妇女和女童接受科学、技术、工程和数学教育提供更多投资,并为她们的事业和更长期的职业发展提供机会,以使所有人都能从她们开创性的未来贡献中获益。
</p>
</blockquote>
<span class="text-primary">Girls Coding Day</span> 是由社会企业 <a href="http://www.codingirlsclub.com/">Coding Girls Club</a> 联合众多性别友好的公司和程序员为促进性别平等而举办的公益编程工作坊。
<br> Girls Coding Day将于每月11日陆续在各大城市开启, 帮助更多的女性学习编程进入 <a href="https://zh.wikipedia.org/wiki/STEM%E6%95%99%E8%82%B2" class="text-info">STEM</a>。
<br> 各城市一年将举办5次
<b>编程工作坊</b>。
</p>
</div>
</div>
</div>
<div class="row padded-bottom-40">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-sm-4 margin-b-30 text-center features">
<i class="fa fa-wrench fa-4x text-primary"></i>
<h4>工具</h4>
<p>
介绍编程开发所需的工具,提供自主学习的路径,开启进入编程领域的第一步。
</p>
</div>
<div class="col-sm-4 margin-b-30 text-center features">
<i class="fa fa-refresh fa-4x text-primary"></i>
<h4>社群</h4>
<p>
Coding Girls Club是一个女性友好的社群,我们还有一群可爱的志愿者教练,会员自发组织的俱乐部,大家一起打怪升级。
</p>
</div>
<div class="col-sm-4 margin-b-30 text-center features">
<i class="fa fa-code fa-4x text-primary"></i>
<h4>动手实践</h4>
<p>
Learning by doing,通过实战学习制作静态网站,你在workshop结束之后将具备做出类似本网站的能力。
</p>
</div>
</div>
</div>
</div>
</div>
<!--half image section start-->
<div class="half-image-section">
<div class="image-col left">
<div class="display-table">
<div class="verticle-middle">
<div class="event-time text-center">
<h4>距离下一场工作坊开始还剩下:</h4>
<div id="countdown" class="text-center">
<div class="dash days-dash text-center">
<div class="circle">
<ul class="alive">
<li class="digit">0</li>
<li class="digit">0</li>
</ul>
<span class="dash-title alive">Days</span>
</div>
</div>
<div class="dash hours-dash text-center">
<div class="circle">
<ul class="alive">
<li class="digit">0</li>
<li class="digit">0</li>
</ul>
<span class="dash-title alive">Hours</span>
</div>
</div>
<div class="dash minutes-dash text-center">
<div class="circle">
<ul class="alive">
<li class="digit">0</li>
<li class="digit">0</li>
</ul>
<span class="dash-title alive">Minutes</span>
</div>
</div>
<div class="dash seconds-dash text-center">
<div class="circle">
<ul class="alive">
<li class="digit">0</li>
<li class="digit">0</li>
</ul>
<span class="dash-title alive">Seconds</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-6">
<div class="half-section-content">
<h1 class="font-700">HTML & CSS Workshop Introduction</h1>
<h4>About this workshop</h4>
<p>
Dive head first into HTML & CSS. This workshop takes a bootstrap project-based approach to HTML & CSS. By distinguishing good code from bad, participants will focus on learning a subset of the good parts in order to make something (quick and) awesome.
</p>
<p>
Tackle the barebones of how to quickly develop a web site, and get it live on the Web by the end of the workshop.
</p>
<h4>Prereps & Preparation</h4>
<p>
Basic HTML experience may be helpful, but is not necessary. <b>Bring a laptop</b> to class (Mac preferred but not required). Please download and install <a href="http://cn.bing.com/search?q=chrome" target="_blank">Chrome</a> and
<a href="https://code.visualstudio.com/" target="_blank">Visual Studio Code</a> (Hint: the download button is on the home page). Please <a href="mailto:[email protected]?subject=Girls Coding Day">email</a> us prior to
class if you have any additional concerns or questions.
</p>
<br>
<!-- <a href="#" class="btn btn-dark-border btn-lg">Get ticket Now</a> -->
</div>
</div>
</div>
</div>
</div>
<!--half image section end-->
</section>
<!--end about section-->
<div class="fun-facts" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-3 margin-b-30">
<h1 class="counter-digit">10</h1>
<span>Cities</span>
</div>
<div class="col-sm-6 col-md-3 margin-b-30">
<h1 class="counter-digit">50</h1>
<span>Workshops</span>
</div>
<div class="col-sm-6 col-md-3 margin-b-30">
<h1 class="counter-digit">2500</h1>
<span>Female Participants</span>
</div>
<div class="col-sm-6 col-md-3 margin-b-30">
<h1 class="counter-digit">500</h1>
<span>Tutors</span>
</div>
</div>
</div>
</div>
<!--fun facts end-->
<!-- <section id="schedule" class="padded-top-70 padded-bottom-40">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 text-center">
<div class="center-title">
<h2>Coding Literacy</h2>
<p class="lead">
Start from 11 June 2017.
</p>
</div>
</div>
</div>
<div class="row margin-b-30">
<div class="col-md-10 col-md-offset-1">
<div>
<ul class="tabs-schedule list-inline" role="tablist">
<li role="presentation"><a href="wuhan.html" aria-controls="01" role="tab">武汉 <span>6-11</span></a></li>
<li role="presentation"><a href="shanghai.html" aria-controls="02" role="tab">上海 <span>7-11</span></a></li>
<li role="presentation"><a href="guangzhou.html" aria-controls="03" role="tab">广州 <span>8-11</span></a></li>
<li role="presentation"><a href="hangzhou.html" aria-controls="03" role="tab">杭州 <span>9-11</span></a></li>
<li role="presentation"><a href="chengdu.html" aria-controls="02" role="tab">成都 <span>待定</span></a></li>
<li role="presentation"><a href="beijing.html" aria-controls="03" role="tab">北京 <span>待定</span></a></li>
<li role="presentation"><a href="shenzhen.html" aria-controls="03" role="tab">深圳 <span>待定</span></a></li>
<li role="presentation"><a href="xian.html" aria-controls="03" role="tab">西安 <span>待定</span></a></li>
<li role="presentation"><a href="nanjing.html" aria-controls="03" role="tab">南京 <span>待定</span></a></li>
<li role="presentation"><a href="chongqing.html" aria-controls="03" role="tab">重庆 <span>待定</span></a></li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="01">
<div class="row margin-b-30">
<h2 class="text-center text-primary">Kickoff Party</h2>
<div class="col-sm-3 event-info">
<span>Session 1</span>
<span>2 Hours</span>
</div>
<div class="col-sm-9 event-detail">
<h4>Intro to Tools & Basic Web Knowledge</h4>
<div class="row margin-b-20">
<div class="col-sm-12">
<li>Anatomy of a website</li>
<li>Client side web development</li>
<li>Web servers and protocols: Hosting provider and so on</li>
<li><b>Optional</b>: Domains, registrars, DNS</li>
<li><b>Optional</b>: Version control systems</li>
<li>Intro to Github (Desktop client and basic commands)</li>
<li><b>Optional</b>: Github workflow for multiple users: forking, branching, merging, PRs</li>
<li>Intro to Github pages</li>
<li>Formatted text - paragraphs, headers</li>
<li>Links, images, lists, tables</li>
<li>CSS properties: colors, different fonts and font sizes</li>
<li>HTML5, pseudo-classes, the box model, padding</li>
<li>Layouts: positions, z-index, floats, clear</li>
</div>
</div>
</div>
</div>
<hr>
<h2 class="text-center text-primary">Workshop</h2>
<div class="row margin-b-30">
<div class="col-sm-3 event-info">
<span>Session 2</span>
<span>10 Hours</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Intro to HTML & CSS</a></h3>
<div class="row">
<div class="col-sm-12">
<li>Fixed and fluid pages</li>
<li>HTML5: browser compatibility, new structural elements </li>
<li>Horizontal & fixed navigation</li>
<li>Heroes with full bleed background images</li>
<li>Border-radius on images & elements</li>
<li>Custom font-faces</li>
<li>Three column layouts</li>
<li>Fancy buttons</li>
<li>SVG graphics</li>
<li>Colors: RGBA colors and opacity, gradients</li>
<li>Transform: scale, rotate, translate</li>
<li>Responsive web design: fluid grids, flexible images, media queries</li>
</div>
</div>
</div>
</div>
<div class="row margin-b-30" style="opacity: 0.7;">
<div class="col-sm-3 event-info">
<span>12:00 AM to 1:00 AM</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">lunch</a></h3>
<p>
We provide lunch for free.
</p>
</div>
</div>
<div class="row margin-b-30">
<div class="col-sm-3 event-info">
<span>Session 3</span>
<span>1:00 PM to 3:00 PM</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Bootstrap Responsive Design</a></h3>
<div class="row margin-b-20">
<div class="col-sm-12">
<li>HTML & CSS Review</li>
<li>Tools and pro-tips for front-end development and debuggin</li>
<li>Good defaults and comparison of front-end frameworks
<</li>
<li>Bootstrap grid system</li>
<li>Exercise - Fluid layout with bootstrap system</li>
<li>Bootstrap CSS, component classes, atomic design</li>
<li>Building a website with UI components</li>
<li>Exercise - Splash page for your portfolio</li>
<li>Exercise - Contact me for</li>
<li>Exercise - Personal website gallery</li>
</div>
</div>
</div>
</div>
<div class="row margin-b-30">
<div class="col-sm-3 event-info">
<span>3:00 PM to 3:30 PM</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Lightning Talks of Startup and Females</a></h3>
<div class="row">
<div class="col-sm-12">
<p>
Once there are startups initialized at our workshop, thanks to our famous lightning talks speakers showed up and inspired the participants.
</p>
</div>
</div>
</div>
</div>
<div class="row margin-b-30">
<div class="col-sm-3 event-info">
<span>Session 4</span>
<span>3:30 PM to 5:30 PM</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Rebuiding & Deploying</a></h3>
<div class="row">
<div class="col-sm-12">
<li>Rebuid Bootstrap website based on your idea</li>
<li><b>Peer Critique</b>: Bootstrap projects</li>
</div>
<div class="col-sm-12">
<li><b>Exercise</b> – Set up repository and account on Github</li>
<li><b>Exercise</b> - Deploy with Github pages, show off to friends</li>
<li><b>Exercise</b> - Student Project Directory, submit a PR with your entry to showcase your work & stay in touch</li>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 event-info">
<span>Session 5</span>
<span>5:30 PM to 6:15 PM</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Review & Award</a></h3>
<div class="row">
<div class="col-sm-12">
<li><b>Presentation</b> – Introduct your idea and website to all participants</li>
<li><b>Awarding</b> - Vote for the excellent websites and award them</li>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div role="tabpanel" class="tab-pane fade" id="02">
<div class="row margin-b-30">
<div class="col-sm-3 event-info">
<span>Saturday</span>
<span>9:00 AM to 10:45 AM</span>
<span class="event-hall">当地组织者决定</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Introducing bootstrap4 features</a></h3>
<div class="row margin-b-20">
<div class="col-sm-2">
<img src="images/team-1.jpg" alt="" class="img-responsive">
</div>
<div class="col-sm-10">
<h4>Nikita Miller</h4>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<img src="images/team-2.jpg" alt="" class="img-responsive">
</div>
<div class="col-sm-10">
<h4>Johathan Doe</h4>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
</div>
</div>
<div class="row margin-b-30">
<div class="col-sm-3 event-info">
<span>Saturday</span>
<span>11:00 AM to 11:45 AM</span>
<span class="event-hall">当地组织者决定</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Roadmap about bootstrap updates</a></h3>
<div class="row">
<div class="col-sm-2">
<img src="images/team-4.jpg" alt="" class="img-responsive">
</div>
<div class="col-sm-10">
<h4>Robert</h4>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
</div>
</div>
<div class="row margin-b-30" style="opacity: 0.7;">
<div class="col-sm-3 event-info">
<span>Monday</span>
<span>1:00 AM to 2:00 AM</span>
<span class="event-hall">Fulkari Restaurant</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">lunch</a></h3>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
<div class="row">
<div class="col-sm-3 event-info">
<span>Monday</span>
<span>2:00 AM to 4:30 AM</span>
<span class="event-hall">当地组织者决定</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Bootstrap with AngularJs</a></h3>
<div class="row">
<div class="col-sm-2">
<img src="images/team-4.jpg" alt="" class="img-responsive">
</div>
<div class="col-sm-10">
<h4>Smitha Doe</h4>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade " id="03">
<div class="row margin-b-30">
<div class="col-sm-3 event-info">
<span>Wednesday</span>
<span>9:00 AM to 10:45 AM</span>
<span class="event-hall">当地组织者决定</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Lorem ipsum dolor sit amet</a></h3>
<div class="row margin-b-20">
<div class="col-sm-2">
<img src="images/team-5.jpg" alt="" class="img-responsive">
</div>
<div class="col-sm-10">
<h4>John Miller</h4>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<img src="images/team-6.jpg" alt="" class="img-responsive">
</div>
<div class="col-sm-10">
<h4>Adam Doe</h4>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
</div>
</div>
<div class="row margin-b-30">
<div class="col-sm-3 event-info">
<span>Wednesday</span>
<span>11:00 AM to 11:45 AM</span>
<span class="event-hall">当地组织者决定</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Roadmap about bootstrap updates</a></h3>
<div class="row">
<div class="col-sm-2">
<img src="images/team-4.jpg" alt="" class="img-responsive">
</div>
<div class="col-sm-10">
<h4>Robert</h4>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
</div>
</div>
<div class="row margin-b-30" style="opacity: 0.7;">
<div class="col-sm-3 event-info">
<span>Wednesday</span>
<span>1:00 AM to 2:00 AM</span>
<span class="event-hall">Fulkari Restaurant</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">lunch</a></h3>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
<div class="row">
<div class="col-sm-3 event-info">
<span>Wednesday</span>
<span>2:00 AM to 4:30 AM</span>
<span class="event-hall">当地组织者决定</span>
</div>
<div class="col-sm-9 event-detail">
<h3><a href="#">Closing ceremony</a></h3>
<div class="row">
<div class="col-sm-2">
<img src="images/team-4.jpg" alt="" class="img-responsive">
</div>
<div class="col-sm-10">
<h4>Smitha Doe</h4>
<p>
But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings, the master-builder of human happiness
</p>
</div>
</div>
</div>
</div>
</div> -->
<!-- </div>
</div>
</div>
</div>
</div>
</section> -->
<!--schedule end-->
<!--feedbacks start-->
<section id="volunteers" class="testimonials-section">
<div class="container">
<div class="row">
<div class="col-sm-4">
<h1 class="text-capitalize text-white">
Why people volunteer for <br>Girls Coding Day ?
</h1>
<br>
<br>
<div class="btn-group">
<!-- <a href="https://girlscodingday.typeform.com/to/xP1yFD"><button type="button" class="btn btn-primary">教练 & 志愿者报名</button></a> -->
<a href="volunteers.html"><button type="button" class="btn btn-primary">志愿者一览</button></a>
</div>
</div>
<div class="col-sm-8 text-left">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<!-- <h2 class="rotation-title">活动发起人</h2> -->
<div class="owl-carousel" id="sync1">
<div class="item">
<p class="lead text-white">
"以帮助女性数字赋能平权为使命,以平凡的姿态做不平凡的事"
</p>
<h5 class="text-white">文洋 <small class="text-white"> - Coding Girls Club Founder</small></h5>
</div>
<div class="item">
<p class="lead text-white">
"相信兴趣是学习的第一核动力!"
</p>
<h5 class="text-white">张韫杰 <small class="text-white"> - 美团网</small></h5>
</div>
<div class="item">
<p class="lead text-white">
"Coding 是通往新世界的一扇大门,愿你我一起坚定有耐心充满好奇地推开它。"
</p>
<h5 class="text-white">张丹 <small class="text-white"> - </small></h5>
</div>
<div class="item">
<p class="lead text-white">
"Thanks to all who’ve helped me."
</p>
<h5 class="text-white">张瑄 <small class="text-white"> - 中国传媒大学</small></h5>
</div>
<div class="item">
<p class="lead text-white">
"Somtimes you just need to be your own hero."
</p>
<h5 class="text-white">钱冰沁 <small class="text-white"> - ThoughtWorks</small></h5>
</div>
<div class="item">
<p class="lead text-white">
"Stay curious, stay childlike."
</p>
<h5 class="text-white">孙秋 <small class="text-white"> - Freelancer</small></h5>
</div>
<div class="item">
<p class="lead text-white">
"热爱折腾热爱养梦。"
</p>
<h5 class="text-white">张弦 <small class="text-white"> - 幻腾智能</small></h5>
</div>
<div class="item">
<p class="lead text-white">
"If you do what you've always done, you'll get what you've always gotten."
</p>
<h5 class="text-white">若水 <small class="text-white"> - 住百家</small></h5>
</div>
</div>
<div class="owl-carousel owl-thumnails" id="sync2">
<div class="item">
<img src="/images/volunteers/wenyang.jpg" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="/images/volunteers/kiwi.jpeg" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="/images/volunteers/zhangdan.jpeg" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="/images/volunteers/zhangxuan.png" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="/images/volunteers/qianbingqin.jpeg" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="/images/volunteers/sunqiu.jpeg" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="/images/volunteers/zhangxian.jpeg" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="/images/volunteers/ruoshui.jpeg" alt="" class="img-responsive img-circle">
</div>
</div>
</div>
<div class="item">
<!-- <h2 class="rotation-title">武汉志愿者</h2> -->
<div class="owl-carousel" id="sync3">
<div class="item">
<p class="lead text-white">
"多看些风景,多看点书,多走点路"</p>
<h5 class="text-white">杨小媚 <small class="text-white"> - 盛安德软件</small></h5>
</div>
<div class="item">
<p class="lead text-white">
"Hello world, Let's doodle!"</p>
<h5 class="text-white">高洁 <small class="text-white"> - 光谷社区</small></h5>
</div>
<div class="item">
<p class="lead text-white">
"Code will bring love and peace"</p>
<h5 class="text-white">刘晨阳 <small class="text-white"> - 盛安德软件</small></h5>
</div>
<div class="item">
<p class="lead text-white">
"Being a developer, have fun!"</p>
<h5 class="text-white">杨波 <small class="text-white"> - zhiren.com / tower.im</small></h5>
</div>
</div>
<div class="owl-carousel owl-thumnails" id="sync4">
<div class="item">
<img src="http://static.codingirlsclub.com/2017-06-04-yangxiaomei.png" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="http://static.codingirlsclub.com/2017-06-04-gaojie.png" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="http://static.codingirlsclub.com/2017-06-04-liuchenyang.png" alt="" class="img-responsive img-circle">
</div>
<div class="item">
<img src="http://static.codingirlsclub.com/2017-06-04-yangbo.png" alt="" class="img-responsive img-circle">
</div>
</div>
</div>
</div>
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
</ol>
</div>
</div>
</div>
</div>
</section>
<!--feedbacks section end-->
<!--parallax section start-->
<!-- <div class="cta" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 text-center">
<h1 class="text-white font-700">Register for Conference now</h1>
<p class="lead text-white">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. took a galley of type and scrambled it to make a type.
</p>
<a href="#" class="btn btn-lg btn-white-border">
Register Now
</a>
</div>
</div>
</div>
</div> -->
<!--parallax section end-->
<!-- <section id="pricing" class="padded-top-70 padded-bottom-40">
<div class='container'>
<div class="row">
<div class="col-sm-10 col-sm-offset-1 text-center">
<div class="center-title">
<h2>承诺费</h2>
<p class='lead'>
本工作坊为非盈利活动,<b>报名无需缴费</b>。<br> 通过筛选的参与者需缴纳少量承诺费,只要完整参与工作坊,将退还承诺费。
</p>
</div>
</div>
</div>
</div>
<div class='container'>
<div class='row no-margin'>
<div class='col-sm-4 no-padding margin-b-30 col-sm-offset-2'>
<div class='price-box'>
<h3 class="font-700 text-uppercase">学生</h3>
<span class='price'>
<sup>¥</sup> 49
</span>
<ul class="price-features list-unstyled">
<li>Workshop Kit</li>
<li>Coffee break</li>
<li>Lunch</li>
<li>Competition Bonus</li>
</ul>
<div class='text-center'>
<a href='#' class="btn btn-dark-border">Buy Now</a>
</div>
</div>
</div>
<div class='col-sm-4 no-padding margin-b-30 col-sm-offset-4'>
<div class='price-box popular'>
<h3 class="font-700 text-uppercase">学员</h3>
<span class='price'>
<sup>¥</sup> 100
</span>
<ul class="price-features list-unstyled">
<li>Workshop Kit</li>
<li>Coffee break</li>
<li>Lunch</li>
<li>Competition Bonus</li>
</ul>
<div class='text-center'>
<a href='#' class="btn btn-white-border">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--end pricing-->
<!--register section start-->
<!-- <section id="register">
<div class="half-image-section dark-section">
<div class="image-col bg3 right"></div>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="half-section-content right-img-content">
<h3 class="font-700">Register Now</h3>
<p class="margin-b-30 lead">
Doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.
</p>
<form class="register-form" action="index.html">
<div class="row">
<div class='col-sm-6'>
<input type="text" class="form-control" placeholder="Name*">
</div>
<div class='col-sm-6'>
<input type="text" class="form-control" placeholder="Email*">
</div>
</div>
<div class="row">
<div class='col-sm-6'>
<input type="text" class="form-control" placeholder="Phone*">
</div>
<div class='col-sm-6'>
<select class="form-control">
<option>- Ticket Type -</option>
<option>Early Bird</option>
<option>Silver Pass</option>
<option>Gold pass</option>
</select>
</div>
</div>
<div class="text-center">
<input type="submit" value="Register Now" class="btn btn-lg btn-theme-bg">
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--register section end-->
<section id="host" class="gallery-section padded-top-70 padded-bottom-40">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 text-center">
<div class="center-title">
<h2>Host</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4 margin-b-30 col-sm-offset-4">
<a href="http://www.codingirlsclub.com">
<img src="images/partners/cgc.jpg" alt="Coding Girls Club" class="img-responsive">
</a>
<!--gallery item-->
</div>
<!--gallery item col-->
</div>
<!--gallery row-->
<!-- <div class="text-center margin-b-30">
<h5>View all images at <a href="#" class="text-underline">Instagram</a></h5>
</div>
</div> -->
</section>
<section id='partners' class="padded-bottom-40 padded-top-70">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 text-center">
<div class="center-title">
<h2>Proudly Partner with</h2>
<p class='lead'>非常骄傲与她们为伍</p>
</div>
</div>
</div>
<div class="row margin-b-20">
<div class='col-sm-10 col-sm-offset-1'>
<div class="row sponsors-row">
<div class="col-sm-4 margin-b-30 col-sm-offset-4">
<a href="https://github.com/">
<img src="http://static.codingirlsclub.com/2020-05-08-GitHub_Logo.png" alt="Github" class="img-responsive">
</a>
</div>
<!-- <div class='col-sm-3'>
<a href="https://school.thoughtworks.cn/">
<img src="images/partners/thoughtworks-school.jpeg" alt="思沃学院" class="img-responsive">
</a>
</div> -->
</div>
<!-- <div class="row sponsors-row">
<div class='col-sm-3'>
<img src="images/ad.png" alt="" class="img-responsive">
</div>