-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathindex.html
892 lines (864 loc) · 31.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="57x57" href="images/favicons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="images/favicons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/favicons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/favicons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/favicons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/favicons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/favicons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/favicons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="images/favicons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicons/favicon-16x16.png">
<link rel="manifest" href="images/favicons/manifest.json">
<meta name="msapplication-TileColor" content="#0c2253">
<meta name="msapplication-TileImage" content="images/favicons/ms-icon-144x144.png">
<meta name="theme-color" content="#0c2253">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>She Codes – Coding Workshops for Women</title>
<link href="https://fonts.googleapis.com/css?family=PT+Mono" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/responsive.css">
<meta property="og:title" content="She Codes – Coding Workshops for Women" />
<meta property="og:description" content="She Codes teaches coding, design and management skills to women. Apply now, only 10 Spots available!"
/>
<meta property="og:url" content="https://shecodes.io/" />
<meta property="og:image" content="https://shecodes.io/images/marketing/banner.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:type" content="website" />
<meta property="og:image:height" content="676" />
<!-- Optional theme -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" -->
<!-- Latest compiled and minified JavaScript -->
<!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" -->
</head>
<body class="headroom">
<header id="header">
<div class="content">
<div class="header-inner">
<a href="/">
<img src="images/branding/logo--header.png" alt="She codes">
</a>
<ul class="hidden-sm hidden-xs">
<li>
<a href="/#mission">
Mission
</a>
</li>
<li>
<a href="/#team">
Team
</a>
</li>
<li>
<a href="/#program">
Program
</a>
</li>
<li>
<a href="/#certificate">
Certificate
</a>
</li>
<li>
<a href="coders.html">
👩💻 <span style="margin-left: 5px;">Coders</span>
</a>
</li>
</ul>
<div class="ctas hidden-xs clearfix">
<a href="#subscribe" class="cta pull-left btn btn-primary">
Stay Updated
</a>
<!-- <a href="https://shecodes.io/apply"
class="cta hidden-xs pull-left btn btn-primary" target=_blank>
Apply Now
</a> -->
</div>
</div>
</div>
</header>
<div class="banner-wrapper hidden-sm hidden-xs">
<div class="banner banner--upcoming">
<a href="/#upcoming">
<strong>
Upcoming workshop
</strong>
<span style="margin-right: 20px;">
She Codes 2.0 applications are now closed
</span>
<!-- <img src="images/navigation/banner-arrow.png" alt=""> -->
</a>
</div>
</div>
<div class="content">
<section class="section section--primary">
<h1 class="center">
👩💻 She Codes is a Coding Workshop for Women
</h1>
<h2 class="center">
Access a new career in Technology
</h2>
<p class="center">
She Codes teaches coding, design and management skills to women
<br>
<strong>Only 10 spots available!</strong>
</p>
<br>
<br>
<div class="center">
<a href="#subscribe" class="btn btn-primary shadow" style="margin-right: 24px;">Stay Updated</a>
<!-- <a href="https://shecodes.io/apply" class="btn btn-primary shadow" target=_blank>Apply Now</a> -->
</div>
</section>
</div>
<a name="mission"></a>
<div class="section-separator section-separator--left"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
🎯
</figure>
<h2 class="center">
Mission
</h2>
<h3 class="center">
She Codes is here to help
</h3>
<p class="center content-inner">
Women hold 25% of coding jobs and earn 30% less money than men. She codes is here to help bridge the gender gap in the tech
programming industry by providing a solid introduction to product <strong>development</strong>,
product <strong>design</strong> and product <strong>management</strong>.
</p>
</div>
</div>
<div class="section-main">
<div class="row">
<div class="col-md-6 hidden-sm hidden-xs">
<img src="images/branding/logo-mission.png" alt="" class="img-responsive mission__image" />
</div>
<div class="col-md-6">
<ul class="mission__list-items">
<li class="mission__list-item">
<h3>1. Product Development</h3>
<p>
Learn how the Internet works, about front-end development (HTML, CSS, JavaScript) and basic coding practices.
</p>
</li>
<li class="mission__list-item">
<h3>2. Product Design</h3>
<p>
Learn the basics of User-Experience (UX) a User Interface (UI) design so you can convert your sketches into actual pixels.
</p>
</li>
<li class="mission__list-item">
<h3>3. Product Management</h3>
<p>
Learn about how to validate an idea, the tools to manage a project and how to have conversations with developers.
</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<div class="section-separator"></div>
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
💸
</figure>
<h2 class="center">
Cost
</h2>
<h3 class="center">
She Codes is a non-profit but we need your help
</h3>
<p class="center content-inner">
We only ask you for a donation of <strong>20 euros</strong> to cover logistics costs for example transport, hosting,
domain names, etc. The workshop is limited to 10 women only.
</p>
</div>
</div>
</section>
</div>
<a name="teachers"></a>
<div class="section-separator section-separator--right"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
👨🏫
</figure>
<h2 class="center">
She Codes Team
</h2>
<h3 class="center">
You are in good company
</h3>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="teacher teacher--left">
<div class="teacher-photo">
<img src="images/team/matt.jpg" alt="Matt">
</div>
<div class="teacher-description">
<h3>Matt Dellac</h3>
<h4>🤓 Product developer</h4>
<p>
Uplabs CEO
<br> She Codes founder
<br> Full-Stack engineer
<br> Y Combinator founder
<br>
<a href="https://twitter.com/dellacm" target=_blank>@dellacm</a>
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="teacher teacher--middle">
<div class="teacher-photo">
<img src="images/team/diogo.png" alt="Diogo">
</div>
<div class="teacher-description">
<h3>Diogo Dantas</h3>
<h4>👨🎤 Product designer</h4>
<p>
Freelancer
<br> Former Uplabs lead designer
<br> Product designer
<br>
<a href="https://twitter.com/im_diogodantas" target=_blank>@im_diogodantas</a>
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="teacher teacher--middle">
<div class="teacher-photo">
<img src="images/team/matilde.jpg" alt="Matilde">
</div>
<div class="teacher-description">
<h3>Matilde Caixeiro</h3>
<h4>🗓 Event coordinator</h4>
<p>
She Codes Alumni
<br>Economics student
<br><a href="https://www.instagram.com/matildecaixeiro/" target=_blank>@matildecaixeiro</a>
</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="teacher teacher--right">
<div class="teacher-photo">
<img src="images/team/sten.jpg" alt="Sten">
</div>
<div class="teacher-description">
<h3>Sten Pittet</h3>
<h4>📈 Product manager</h4>
<p>
Squadlytics founder <br> Former Atlassian product manager <br> Mobile developer <br>
<a href="https://twitter.com/stenpittet" target=_blank>@stenpittet</a>
</p>
</div>
</div>
</div>
</div>
</section>
</div>
<a name="program"></a>
<div class="section-separator"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
🗓
</figure>
<h2 class="center">
Program
</h2>
<h3 class="center">
4 lessons, every Saturday morning for 3 hours
</h3>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="program-day">
<h3>
Day 1
</h3>
<h4>
Coding Basics
<br> with Matt
</h4>
<ul>
<li>
HTTP
</li>
<li>
Front end vs Back end
</li>
<li>
HTML / CSS
</li>
</ul>
<br>
<small>You'll have a basic understanding of how the internet works, how to hold a conversation with a developer and how to create a web page.</small>
</div>
</div>
<div class="col-sm-3">
<div class="program-day">
<h3>
Day 2
</h3>
<h4>
UI Development
<br> with Matt and Diogo
</h4>
<ul>
<li>
Design principles
</li>
<li>
UI Design with <a href="https://www.figma.com" target=_blank>Figma</a>
</li>
<li>
Advanced CSS
</li>
</ul>
<br>
<small>You'll be able to convert an idea into actual pixels.</small>
</div>
</div>
<div class="col-sm-3">
<div class="program-day">
<h3>
Day 3
</h3>
<h4>
Web Development
<br> with Matt
</h4>
<ul>
<li>
IDE
</li>
<li>
Ruby basics
</li>
<li>
JavaScript basics
</li>
</ul>
<br>
<small>You'll understand how programming languages work and why they are so powerful.</small>
</div>
</div>
<div class="col-sm-3">
<div class="program-day">
<h3>
Day 4
</h3>
<h4>
Product management
<br> with Matt and Sten
</h4>
<ul>
<li>
Git & GitHub
</li>
<li>
Development workflow
</li>
<li>
Product management
</li>
</ul>
<br>
<small>You will know how to validate an idea, manage your code and how to iterate on a product.</small>
</div>
</div>
</div>
</section>
</div>
<div class="section-separator section-separator--right"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
🗣
</figure>
<h2 class="center">
Quotes
</h2>
<h3 class="center">
What the community thinks of She Codes
</h3>
</div>
</div>
<div class="quotes">
<div class="quote">
<div class="row">
<div class="col-sm-3 hidden-xs">
<img src="images/students/monica.png" alt="Monica Zaldivar" class="img-responsive">
</div>
<div class="col-sm-7 col-xs-12">
<div class="quote-description">
<p>
"She Codes closes the chasm between two worlds that for most women remains still unbridgeable and offers a no-excuses format
for creative women to better understand how to turn their ideas and designs into a digital format."
<br>
<strong>
Monica Zaldivar, Community Lead @ <a href="https://www.uplabs.com/" target=_blank>Uplabs</a>
</strong>
</p>
</div>
</div>
</div>
</div>
<div class="quote">
<div class="row">
<div class="col-sm-7 col-sm-offset-2 col-xs-12">
<div class="quote-description">
<p>
“Women are dramatically under-represented across the tech industry - something we believe is important to address. That's
why we're proud to host She Codes for their first course at Second Home Lisboa and help offer an opportunity
for women in Lisbon to learn more about coding and develop their skills.”
<br>
<strong>
Lucy Crook, General Manager @ <a href="https://secondhome.io/lisboa" target=_blank>Second Home Lisboa</a>
</strong>
</p>
</div>
</div>
<div class="col-sm-3 hidden-xs">
<img src="images/students/lucy.png" alt="Lucy Crook" class="img-responsive">
</div>
</div>
</div>
</div>
<div class="quote">
<div class="row">
<div class="col-sm-3 hidden-xs">
<img src="images/students/debora.png" alt="Débora Nabais" class="img-responsive">
</div>
<div class="col-sm-7 col-xs-12">
<div class="quote-description">
<p>
“An amazing way to start changing the world. I believe programs like this help closing the gender gap in the tech world and
demystify that code is such a hard thing to learn and it can be fun!”
<br>
<strong>
Débora Nabais, Co founder @ <a href="http://www.weareportugalska.com/" target=_blank>Portúgalska</a>
</strong>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="section-separator"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
🛠
</figure>
<h2 class="center">
Past Workshop
</h2>
</div>
</div>
<div>
<div class="row">
<div class="col-md-6">
<div class="event">
<h3 class="center">From September 23 <br> to October 14 2017</h3>
</div>
</div>
<div class="col-md-6">
<div class="event">
<h3 class="center" style="margin-top: 10px;">
<span style="color: #272044;">
In Lisbon, Portugal 🇵🇹
</span>
<small>
Every Saturday morning from 9:45 to 13:00
</small>
</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="images/photos/group.png" alt="" class="img-responsive">
</div>
<div class="col-md-6">
<img src="images/photos/teacher.png" alt="" class="img-responsive">
</div>
</div>
</div>
</section>
</div>
<a name="upcoming"></a>
<div class="section-separator"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
🛠
</figure>
<h2 class="center">
Upcoming Workshop
</h2>
<h3 class="center">
Applications are now closed 👊
</h3>
<br>
</div>
</div>
<div>
<div class="row">
<div class="col-sm-6 hidden-xs">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3113.4858079111777!2d-9.147524684632407!3d38.70665397960038!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xd19347df416b6cf%3A0xaa5644d2c3dc085d!2sSecond+Home+Lisboa!5e0!3m2!1sen!2suk!4v1504971109328"
width="100%" height="600" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<div class="col-sm-5 col-sm-offset-1 col-xs-12">
<div class="event">
<h3>From November 18 <br> to December 9 2017</h3>
<h3>
<span style="color: #272044;">
4 Weeks
</span>
<small>
Every Saturday morning from 9:45 to 13:00
</small>
</h3>
<p>
Second Home Lisboa
<br> Mercado de Ribeira,
<br> Avenida 24 de Julho,
<br> 1200-479 Lisboa
<br> Portugal 🇵🇹
</p>
</div>
</div>
</div>
</div>
</section>
</div>
<a name="certificate"></a>
<div class="section-separator"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
🎓
</figure>
<h2 class="center">
Certificate
</h2>
<h3 class="center">
At the end of the workshop, you will receive a free Verified Certificate from She Codes certifying that you have gone through
the entire workshop.
</h3>
<img src="images/certificate/preview.png" alt="She Codes Certificate" class="img-responsive center block">
</div>
</div>
</section>
</div>
<a name="sponsors"></a>
<div class="section-separator"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
🙌
</figure>
<h2 class="center">
Our Sponsor
</h2>
<h3 class="center">
Thanks to our amazing sponsor <a href="https://secondhome.io/" target=_blank>Second Home</a> who are providing
the venue for the workshop.
</h3>
<div class="row">
<div class="col-md-3 col-md-offset-3">
<a href="https://secondhome.io/" target=_blank class="block center">
<img src="images/sponsors/second-home.png" alt="" class="img-responsive center block">
</a>
</div>
<div class="col-md-3">
<a href="https://www.uplabs.com/" target=_blank class="block center">
<img src="images/sponsors/uplabs.png" alt="" class="img-responsive center block">
</a>
</div>
</div>
</div>
</div>
</section>
</div>
<a name="faq"></a>
<div class="section-separator section-separator--left-secondary"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
🤔
</figure>
<h2 class="center">
FAQ
</h2>
<h3 class="center">
If you have any other questions just <a href="mailto:matt@dellac.org">get in touch!</a>
</h3>
</div>
</div>
<div class="faq">
<div class="row">
<div class="col-md-6">
<h3>
Do I need a laptop?
</h3>
<p>
Yes, you’ll need to bring a fully charged laptop with you. Windows or Mac doesn’t matter. Ideally, you should feel comfortable
using this computer for daily tasks.
</p>
</div>
<div class="col-md-6">
<h3>
Do I need to know how to code?
</h3>
<p>
No, we’ll start from scratch assuming you’ve never coded before. If you already have some knowledge, you’ll still learn a
lot!
</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h3>
Why only for woman?
</h3>
<p>
Women hold 25% of coding jobs (vs 35%+ twenty years ago), earn 30% less money than men in an industry soon to be the biggest
in the world. Let’s change that!
</p>
</div>
<div class="col-md-6">
<h3>
Will I be able to get a job after the program?
</h3>
<p>
After the workshop, you'll know if you want to become a product designer, developer or manager. We'll provide you guidelines
to deepen your skills however, you won't be ready to take on a new job opportunity... yet!
</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h3>
Do I need to speak English?
</h3>
<p>
Yes, all classes will be in English.
</p>
</div>
<div class="col-md-6">
<h3>
Can I get a refund?
</h3>
<p>
No, as your donation is covering logistics, we won't be able to process any refunds.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h3>
Do I need to come to all 4 sessions?
</h3>
<p>
Yes, this is to make sure you get a solid overview of the product development industry.
</p>
</div>
<div class="col-md-6">
<h3>
Can I mention the certificate on my CV?
</h3>
<p>
Yes, you'll receive a certificate if you attend all sessions.
</p>
</div>
</div>
<div class="center">
<a href="mailto:matt@dellac.org" class="btn btn-secondary" style="margin-right: 24px;">Contact Us</a>
<!-- <a href="https://shecodes.io/apply"
class="btn btn-primary" target=_blank>Apply Now</a> -->
</div>
</section>
</div>
<a name="subscribe"></a>
<div class="section-separator section-separator--right"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
📬
</figure>
<h2 class="center">
Are you interested?
</h2>
<h3 class="center">
If you're ready to learn how to code, please subscribe. We will keep you updated about our next workshop.
</h3>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<form action="https://shecodes.us16.list-manage.com/subscribe/post?u=219d64fb78184de8fb1780d19&id=fd4f9aa80e" method="post"
id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate subsribe__form shadow" target="_blank"
novalidate>
<div id="mc_embed_signup_scroll">
<div class="mc-field-group">
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" placeholder="Enter your email here">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_219d64fb78184de8fb1780d19_fd4f9aa80e" tabindex="-1" value=""></div>
<div class="clear"><input type="submit" value="Stay updated" name="subscribe" id="mc-embedded-subscribe" class="btn btn-primary"></div>
</div>
</form>
</div>
</div>
</section>
</div>
<div class="section-separator"></div>
<div class="content">
<section class="section section--secondary">
<div class="section-header">
<div class="content-inner">
<figure class="emoji center">
🙏
</figure>
<h2 class="center">
Help Us Spread The Word
</h2>
</div>
</div>
<div class="share-links center">
<a href="https://twitter.com/home?status=She%20Codes%20is%20a%20new%20Coding%20Workshop%20for%20Women.%20Check%20it%20out%20%F0%9F%91%A9%E2%80%8D%F0%9F%92%BB!%20%23shecodes%0A%0Ahttp%3A//shecodes.io/%20"
class="clearfix center btn btn-icon btn-primary btn-twitter shadow" target=_blank>
<i class="fa fa-twitter pull-left"></i> <span class="pull-left"> Share on Twitter</span>
</a>
<a href="https://www.facebook.com/sharer/sharer.php?u=http%3A//shecodes.io/" class="clearfix center btn btn-icon btn-primary btn-facebook shadow"
target=_blank>
<i class="fa fa-facebook pull-left"></i> <span class="pull-left"> Share on Facebook</span>
</a>
</div>
<br><br>
<h3 class="center">
And Follow Us
</h3>
<div class="follow-links center">
<a href="https://www.facebook.com/shecodesio/" class="follow follow--facebook" target=_blank>
<i class="fa fa-facebook"></i>
Like us
<span class="hidden-xs">
on Facebook
</span>
</a>
<a href="https://www.instagram.com/shecodesio/" class="follow follow--instagram" target=_blank>
<i class="fa fa-instagram"></i>
Follow us
<span class="hidden-xs">
on Instagram
</span>
</a>
<a href="https://twitter.com/shecodesio" class="follow follow--twitter" target=_blank>
<i class="fa fa-twitter"></i>
Follow us
<span class="hidden-xs">
on Twitter
</span>
</a>
</div>
</div>
</section>
</div>
<div class="section-separator"></div>
<footer class="center">
<div class="content">
<p>
This website was coded by <a href="https://twitter.com/matdellac" target=_blank>Matt Dellac</a>, designed by
<a href="https://twitter.com/im_diogodantas" target=_blank>Diogo Dantas</a> and is <a href="https://github.com/matthieua/shecodes"
target=_blank>open-sourced</a>.
</p>
</div>
</footer>
</body>
<script src="js/headroom.min.js"></script>
<script src="js/app.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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-106219449-1', 'auto');
ga('send', 'pageview');
</script>
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-3.min.js" data-apikey="11fe396ef606e65c603ac8aa30897ef5"></script>
<script src='https://cdn.slaask.com/chat.js'></script>
<script>
_slaask.init('1f2ebe6af34f836184c8f24fe347a98e');
</script>
<!-- Hotjar Tracking Code for https://shecodes.io/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:679802,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
</html>