forked from EliseWei/intro-web-concepts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·643 lines (587 loc) · 28.3 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Intro to Web Concepts - Girl Develop It</title>
<meta name="description" content="This is the official Girl Develop It Core Intro Web Concepts course. Material was originally developed by Matt Torbin and Elise Wei. The course is meant to be taught in a single two-hour workshop.">
<meta name="author" content="Girl Develop It">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/gdilight.css" id="theme">
<!-- For syntax highlighting -->
<!-- light editor--><link rel="stylesheet" href="lib/css/light.css">
<!-- dark editor<link rel="stylesheet" href="lib/css/dark.css">-->
<!-- If use the PDF print sheet so students can print slides-->
<link rel="stylesheet" href="css/print/pdf.css" type="text/css" media="print">
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<img style="border: none; width: 300px;" src="images/gdi_logo_badge.png" alt="Girl Develop It logo" class="noborder"/>
<h3>Introduction to Web Concepts</h3>
<em>or</em>
<h4>What is that Web Developer talking about?</h4>
</section>
<section>
<h2>Welcome!</h2>
<div class="left-align">
<p>Girl Develop It is here to provide affordable and accessible programs to learn software through mentorship and hands-on instruction.</p>
<p>Some "rules"</p>
<ul>
<li>We are here for you!</li>
<li>Every question is important</li>
<li>Help each other</li>
<li>Have fun</li>
<li>Code of Conduct</li>
</ul>
</div>
</section>
<section>
<h2>Intros</h2>
<div class="left-align">
<p>Tell us about yourself!</p>
<p>#1 - Name, where you're from, why you're here.</p>
<p>#2 - Your favorite TV nerd.</p>
</div>
</section>
<section>
<h2>What we'll cover</h2>
<ul>
<li>Terms & technologies</li>
<li class="fragment">Building a web site</li>
<li class="fragment">Web development professionals</li>
</ul>
<aside class="notes">
<ul>
<li>Terms: Acronyms, how the internet works, client vs server, languages/libraries/frameworks</li>
<li>Building: Considerations, UX/IA, downsides of WYSIWYG, demo, differences in languages, tools</li>
<li>Web Dev: Hiring, becoming one, team structure</li>
</ul>
</aside>
</section>
<section>
<h2>What to expect</h2>
<ul>
<li>This is a survey of a very broad topic</li>
<li class="fragment">Get a sense of what you'd like to know more about</li>
<li class="fragment">I don't know everything, and neither will you</li>
<li class="fragment">Have fun! (and ask questions)</li>
</ul>
</section>
<section>
<h2>Terms & Technologies</h2>
<img src="images/technology-kitty.jpg" alt="Technology kitty" />
</section>
<section>
<section>
<h3>Terms</h3>
<div class="left-align">
<p class="fragment"><strong>HTML</strong>: Hyper Text Markup Language - The code structure used to convey the content of a web site</p>
<p class="fragment"><strong>CSS</strong>: Cascading Style Sheets - A language used to describe the presentation of the content</p>
<p class="fragment"><strong>WYSIWYG</strong>: What You See Is What You Get - A type of editing software meant to be used by those who don't know how to code</p>
<p><a href="https://drive.google.com/file/d/0BxQXRnlxr_axM2tCVGhXRk9WWU0/view?usp=sharing">Link to Cheat Sheet...</a></p>
</div>
<aside class="notes">
<ul>
<li>WYSIWYG - Dreamweaver is the most common example</li>
</ul>
</aside>
</section>
<section>
<h3>Terms</h3>
<div class="left-align">
<p class="fragment"><strong>IDE</strong>: Integrated Development Environment - Software meant to support the entire development process, often including compilation for a server-side language</p>
<p class="fragment"><strong>CMS</strong>: Content Management System - A program that allows publishing, editing, and modifying content as well as maintenance from a central interface</p>
<p class="fragment"><strong>Open source</strong>: A program in which the source code is available to the general public for use and/or modification from its original design</p>
<p><a href="https://drive.google.com/file/d/0BxQXRnlxr_axM2tCVGhXRk9WWU0/view?usp=sharing">Link to Cheat Sheet...</a></p>
</div>
<aside class="notes">
<ul>
<li>IDE - Visual Studio, Eclipse, Xcode</li>
<li>CMS - (Web CMS) Wordpress, Drupal. (Enterprise-level) Interwoven</li>
<li>Open source - Perl, Python, PHP, jQuery. Mention derivative works also being open source.</li>
</ul>
</aside>
</section>
<section>
<div class="left-align">
<p class="fragment"><strong>API</strong>: Application Programming Interface - An easy-to-use interface or set of tools made available to access a complex application</p>
<p class="fragment"><strong>IP Address</strong>: Internet Protocol Address - A unique address for a computer or a server. Some IP Addresses are only unique to the network they are on while others are completely unique</p>
<p class="fragment"><strong>DNS</strong>: Domain Name Service - A directory that associates domain names with host IPs to allow users to connect to web sites via URLs</p>
<p><a href="https://drive.google.com/file/d/0BxQXRnlxr_axM2tCVGhXRk9WWU0/view?usp=sharing">Link to Cheat Sheet...</a></p>
</div>
<aside class="notes">
<ul>
<li>API - like the "drive thru" version of interfacing with a service</li>
</ul>
</aside>
</section>
<section>
<div class="left-align">
<p class="fragment"><strong>SEO</strong>: Search Engine Optimization - The process of increasing your web site's perceived value to search engine algorithms, raising its rank in search results</p>
<p class="fragment"><strong>Web 2.0</strong>: Buzzword generally describing a trend towards interactivity, rich media, and social engagement in web design</p>
<p class="fragment"><strong>The Cloud</strong>: Services and technology that offer remote storage, processing, or other functionality by way of the internet</p>
<p><a href="https://drive.google.com/file/d/0BxQXRnlxr_axM2tCVGhXRk9WWU0/view?usp=sharing">Link to Cheat Sheet...</a></p>
</div>
<aside class="notes">
<ul>
<li>Cloud - your Google Drive, for example</li>
</ul>
</aside>
</section>
</section>
<section>
<h2>What is the world wide web?</h2>
<img class="fragment" src="images/client-server.png" alt="" />
</section>
<!--- Tour of the web -->
<section>
<section>
<h3>How does the web work?</h3>
<p>Let's take a tour! A typical web site will live or is "hosted" on a web server. Web servers are often large computers connected to a network.</p>
<img src="images/server-small.jpg" alt="Server with three ethernet cables" />
<p><small>Photo credit <a href="http://www.flickr.com/photos/7409674@N07/435133113">computerroom085</a> <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/">cc</a></small></p>
<aside class="notes">
<p>Next slides are step-by-step process.</p>
</aside>
</section>
<section>
<h3>Step 1: Type an address into the address bar</h3>
<img src="images/step-1.png" alt="Typing girldevelopit.com into an address bar" />
<aside class="notes">
<p>Browser starts the process on your behalf.</p>
<p>We're skipping or condensing steps for clarity.</p>
</aside>
</section>
<section>
<h3>Step 2: Your computer performs a DNS lookup</h3>
<p>Each website has a unique code, called an IP address, that is like a phone number.<p>
<p>DNS, or Domain Name Servers, are like phone books. The DNS servers will connect you to the right server.</p>
<p style = "font-size:2em%; height:100%; margin-top:2em;" class ="blue">girldevelopit.com → 205.178.189.129</p>
<aside class="notes">
<p>DNS Servers are spread throughout the world.</p>
<p>Your ISP, like Comcast or Time Warner Cable, probably provides your DNS server.</p>
<p>Your computer also has an IP address; that's how the page gets back to you.</p>
</aside>
</section>
<section>
<h3>Step 3: The server reponds to your request</h3>
<p>The server processes your request and finds the right files. Sometimes it has to "compile" a page from code and other sources, like a database.</p>
<aside class="notes">
<p>Back-end languages often talk to databases</p>
</aside>
</section>
<section>
<h3>Step 4: The server sends your computer the files</h3>
<p>This is usually an HTML page, with some CSS, JavaScript, or media files.</p>
<img src="images/mailbox.jpg" alt="Mailbox" />
<p><small>Photo credit <a href="http://www.flickr.com/photos/53326337@N00/4384851676">Envelope</a> <a href="http://creativecommons.org/licenses/by-sa/2.0/">cc</a></small></p>
<aside class="notes">
<p>Each files comes a seperate request</p>
<p>Requests are packaged into packets</p>
</aside>
</section>
<section>
<h3>Step 5: Your browser displays the page</h3>
<p>Your browser interprets the code and assembles all the files into a page you can see and use. Each browser does this slightly differently.</p>
<img src="images/hello.jpg" alt="Hello in many languages" />
<p><small>Photo credit <a href="http://www.flickr.com/photos/27439865@N05/3977313856">Hola</a> <a href="http://creativecommons.org/licenses/by-sa/2.0/">cc</a></small></p>
<aside class="notes">
<p>Browser also runs JavaScript</p>
</aside>
</section>
</section>
<!--- <section>
<h3>Home and daily life of a web site</h3>
<p class="left-align">A typical web site will live or is "hosted" on a web server. Web servers are often large computers connected to a network.</p>
<ul>
<li class="fragment">Type a web site address into the address bar</li>
<li class="fragment">DNS connects you to the hosting server</li>
<li class="fragment">The files are then sent back to your computer for display</li>
<li class="fragment">Sometimes code must be compiled before being sent back to you.</li>
</ul>
</section> -->
<section>
<h3>Clients vs. Servers</h3>
<ul>
<li class="fragment">Clients make requests, servers fulfill them (usually).</li>
<li class="fragment">Browsers are clients. There are other types as well.</li>
<li class="fragment">Any computer can be a server.</li>
<li class="fragment">Most servers are powerful, specialized computers.</li>
</ul>
<aside class="notes">
<p>Other clients: search engine crawlers, command line interfaces, and other applications</p>
</aside>
</section>
<section>
<h3>Let's Try It!</h3>
<p>The simpliest type of request you can send is a "ping." It asks the server "are you there?"</p>
<ol>
<li>Open the command line (Windows) or the terminal (Mac)</li>
<li>Type "ping google.com" and see what happens</li>
<li>Try some different websites</li>
</ol>
<aside class="notes">
<p>Explain what the different terms mean:</p>
<ul>
<li>Reply from: IP address of the server you are talking to</li>
<li>Bytes: Size of the request</li>
<li>Time: round trip time</li>
<li>TTL: Time to Live is a counter that keeps packets from circling forever</li>
</ul>
</aside>
</section>
<section>
<h3>What about 'The Cloud'?</h3>
<img src="images/cloud.png" alt="Cloud computing" style="width: 250px; display:block; margin: 0 auto;" />
<div class="left-align">
<ul>
<li class="fragment">Cloud Computing means that data can be stored across a number of machines in different locations instead of just one locally.</li>
<li class="fragment">Cloud applications need internet access in order to work.</li>
</ul>
<aside class="notes">
<p>Examples: Google Drive, Apple Music</p>
</aside>
</div>
</section>
<section>
<h3>Browsers</h3>
<img src="images/browser-stats.png" alt="Browser usage statistics" width="700" />
<p><small>Source: <a target="_blank" href="http://gs.statcounter.com/#browser-ww-yearly-2012-2015">StatCounter Global Stats - Browser Market Share</a></small></p>
<aside class="notes">
<ul>
<li>Click through to show the difference between global browser shares and US.</li>
</ul>
</aside>
</section>
<section>
<section>
<h3>Parsing languages</h3>
<div style="width: 48%; margin-right: 2%; float: left; text-align: left;">
<p>Client-side:</p>
<ul class="fragment">
<li>HTML</li>
<li>CSS</li>
<li>SASS</li>
<li>JavaScript</li>
</ul>
</div>
<div style="width: 50%; float: left; text-align: left;">
<p>Server-side:</p>
<ul class="fragment">
<li>PHP</li>
<li>Perl</li>
<li>Python</li>
<li>Ruby</li>
<li>.Net</li>
<li>Java</li>
<li>ColdFusion</li>
<li>Databases</li>
<li>Also Javascript. (It's complicated)</li>
</ul>
</div>
</section>
<section>
<h3>Not languages</h3>
<ul>
<li class="fragment"><strong>Libraries</strong>, like jQuery & Mootools, are collections of programming shortcuts for a language</li>
<li class="fragment"><strong>Frameworks</strong>, like Rails and Angular, a collection of assets/tools that helps you work in a particular language</li>
<li class="fragment"><strong>Content Management Systems</strong>, like WordPress, are tools that build webpages</li>
<li class="fragment">A <strong>specification</strong>, like the HTML spec, is a set of currently acceptable rules for a given language</li>
</ul>
</section>
<section>
<h3>Not languages</h3>
<ul>
<li><strong>AJAX</strong>, Asynchronous JavaScript And XML, a technique for combining multiple languages to return results from the server without needing to refresh a page.</li>
<li><strong>REST</strong>, Representational State Transfer, a protocol for building web applications.</li>
</ul>
</section>
</section>
<section>
<h2>Java != JavaScript</h2>
<div style="width: 48%; margin-right: 2%; float: left; text-align: left;">
<p>Java:</p>
<ul class="fragment">
<li>Server-side</li>
<li>Object-oriented</li>
<li>Requires special parser (JVM)</li>
<li>By Sun Microsystems</li>
</ul>
</div>
<div style="width: 50%; float: left; text-align: left;">
<p>JavaScript:</p>
<ul class="fragment">
<li>Primarily client-side</li>
<li>Primarily written procedurally</li>
<li>Parsed by any browser</li>
<li>By Netscape</li>
</ul>
</div>
</section>
<section>
<h2>Web standards</h2>
<p>We all need to play by the same rules!</p>
<p>In general, this means a site should:</p>
<ul>
<li class="fragment">Have <strong>valid HTML, CSS, and JavaScript</strong>, so browsers know how to read the page</li>
<li class="fragment">Meet <strong>accessibility standards</strong>, so people with disabilities can use a site</li>
<li class="fragment">Have <strong>valid metadata</strong>, information about the page, so search engines and other tools can index it</li>
<li class="fragment">Have <strong>proper character encoding</strong>, so special characters don't break the page.</li>
</ul>
</section>
<!-- Stretch break!! -->
<section>
<h2>Building a web site</h2>
<img src="images/builder-kitty.jpg" alt="Builder kitty" />
</section>
<section>
<h3>Considerations before building</h3>
<ul>
<li class="fragment">What is the purpose of the site?</li>
<li class="fragment">Hosting and a domain name
<ul class="fragment">
<li>Domain name registration should not cost more than $15/yr</li>
<li>Hosting a simple personal website should not cost more than $50/yr</li>
<li>Hosting choices may depend on supported server-side tech</li>
</ul>
</li>
<li class="fragment">Whether to build it yourself or hire someone</li>
</ul>
</section>
<section>
<section>
<h3>User Experience & Information Architecture</h3>
<p>A user-friendly, well-architected site will:</p>
<ul>
<li class="fragment">Deepen engagement</li>
<li class="fragment">Increase conversion</li>
<li class="fragment">Raise satisfaction</li>
<li class="fragment">Bring users back</li>
</ul>
</section>
<section>
<h3>Sitemaps & decision trees</h3>
<div style="width: 48%; margin-right: 2%; float: left; text-align: left;">
<img src="images/sitemap.gif" alt="" />
</div>
<div style="width: 50%; float: left; text-align: left;">
<img src="images/Imaging.jpg" alt="" />
</div>
<aside class="notes">
<ul>
<li>Both important to UX/IA</li>
<li>Sitemaps show the organization of pages and assets for a site</li>
<li>Decision trees help predict how the user will move through the site or utilize interactive tools/forms</li>
</ul>
</aside>
</section>
</section>
<section>
<h3>WYSIWYG vs. hand-coding</h3>
<ul>
<li>WYSIWYG code editors make general assumptions about what you intended to write which often is not accurate or best</li>
<li class="fragment">They make the job of professionals <em>much</em> more difficult when the code is written poorly and filled with junk</li>
<li class="fragment">To truly understand what you are building, you need to learn the fundamental components</li>
<li class="fragment">Once you know how to code by hand, there are no limits to what you can build!</li>
</ul>
</section>
<section>
<section>
<h3>What languages to use</h3>
<p class="fragment">That depends...</p>
<ul>
<li class="fragment">You'll definitely use HTML and CSS</li>
<li class="fragment">You may use JavaScript to make things interactive</li>
<li class="fragment">If you want to store or retrieve data, you'll need a server-side language</li>
</ul>
</section>
<section>
<h2>Demo: How'd they do that?</h2>
<a href="http://alistapart.com/" target="_blank">A List Apart</a><br />
<a href="http://squarespace.com/" target="_blank">Squarespace</a><br />
<a href="http://www.bk.com/" target="_blank">Burger King</a>
<aside class="notes">
<ul>
<li>Show how to use browser inspection</li>
<li>Show how to dissect a couple small interesting components</li>
<li>Obviously, swap these out for whatever examples work for you</li>
</ul>
</aside>
</section>
<section>
<h3>Let's Try It!</h3>
<p>Let's edit a simple HTML page.</p>
<ol>
<li>Go to <a href="http://codepen.io/gdiburlington/pen/YqQvgr">our CodePen</a></li>
<li>Try changing some of the text on the page in the HTML</li>
<li>Try changing one of the colors in the CSS</li>
</ol>
<aside class="notes">
<p>Nothing you do will set your computer on fire!</p>
</aside>
</section>
</section>
<section>
<section>
<h3>Server-side languages: What are the differences?</h3>
<ul>
<li>The main difference is syntax, the set of rules for how you write a language.</li>
<li class="fragment">They have slightly different strengths and philosophies</li>
<li class="fragment">Which you choose to use will depend on
<ul>
<li>What you are familiar with or want to learn</li>
<li>What your host supports</li>
<li>Community and documentation</li>
</ul>
</li>
</ul>
</section>
<section>
<h3>Hello world</h3>
<p>PHP</p>
<pre><code class="php">echo "Hello, world!";
</code></pre>
<p>Java</p>
<pre><code class="java">class HelloWorld {
static public void main( String args[] ) {
System.out.println( "Hello World!" );
}
}
</code></pre>
</section>
<section>
<h3>Hello world</h3>
<p>Python</p>
<pre><code class="python">'Hello, world!'
</code></pre>
<p>Ruby</p>
<pre><code class="ruby">puts 'Hello, world!'
</code></pre>
</section>
<section>
<h3>Hello world</h3>
<p>JavaScript</p>
<p><small>Not server-side, but just for example</small></p>
<pre><code class="js">document.writeln('Hello, World!');
</code></pre>
</section>
</section>
<section>
<section>
<h3>Tools of the trade</h3>
<p class="left-align">To build your web site, you will probably need:</p>
<ul>
<li class="fragment">A <strong>text editor</strong> like SublimeText, Notepad, or TextWrangler to write your code. Many can be found for free.</li>
<li class="fragment">A <strong>web browser</strong> like Chrome, Firefox, or Safari to test your code. All popular modern browsers are free.</li>
</ul>
</section>
<section>
<h3>Tools of the trade</h3>
<p class="left-align">You will also need:</p>
<ul>
<li class="fragment">An <strong>FTP (file transfer protocol) client</strong> such as WinSCP, Cyberduck, or CoffeeCup FTP to get files from your computer to the server. Many are free.</li>
<li class="fragment">Optionally, an <strong>image editor</strong> such as IrfanView, Gimp, or Photoshop to edit images which will be used on the web site. Some are available for free.</li>
</ul>
</section>
</section>
<section>
<h2>Web development professionals</h2>
<img src="images/developer-kitty.jpg" alt="Builder kitty" />
</section>
<section>
<h3>Meet the web team</h3>
<ul>
<li class="fragment">Front end
<ul>
<li>User Experience Designer</li>
<li>Graphic Designer</li>
<li>Web Developer</li>
</ul>
</li>
<li class="fragment">Back end
<ul>
<li>Server Admin</li>
<li>Database Admin</li>
<li>Software Engineer</li>
</ul>
</li>
<li class="fragment">Overall
<ul>
<li>QA Engineer</li>
<li>Project Manager</li>
</ul>
</li>
</ul>
</section>
<section>
<h3>How to hire a developer</h3>
<p class="left-align">Remember the three Rs:</p>
<ul>
<li class="fragment"><strong>References</strong>: Talk to people who have worked with the developer before. Were they prompt? Pleasant? Forthright?</li>
<li class="fragment"><strong>Requirements</strong>: Can they do the work that needs to be done. Ask for samples of their prior work and ask exactly which parts of the process they were responsible for. Design? UX? DB architecture? QA?</li>
<li class="fragment"><strong>Reality</strong>: If it sounds too good to be true, it probably is. This website will be a reflection of you, either personally or professionally. Hire someone you feel will be invested in a job well done.</li>
</ul>
</section>
<section>
<h3>How to be hired as a developer</h3>
<ul>
<li>Degrees and certifications: they don't hurt</li>
<li class="fragment">Be curious, a problem solver, and intrepid</li>
<li class="fragment">Build things. For yourself, if no one will pay you</li>
<li class="fragment">Through all of this, learn your craft and how things work</li>
</ul>
</section>
<section>
<h2>Questions?</h2>
<div style = "font-size:1200%; height:100%; margin-top:40%" class ="blue">?</div>
</section>
<section>
<h2>More information</h2>
<p>Girl Develop It BTV co-leaders: <br />Rachael Arnold and Maureen McElaney.</p>
<ul>
<li>Join our <a href="http://www.meetup.com/Girl-Develop-It-Burlington/">Meetup group</a></li>
<li>National <a href="https://www.girldevelopit.com/">website</a></li>
<li>Email <a href="mailto:burlington@girldevelopit.com">burlington@girldevelopit.com</a></li>
<li>Twitter <a href="https://twitter.com/gdiburlington">@gdiburlington</a></li>
</ul>
<div class ="clear"></div>
</section>
</div>
<footer>
<div class="copyright">
Intro to Web Concepts -- Girl Develop It -- <a rel="license" href="http://creativecommons.org/licenses/by-nc/3.0/deed.en_US"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc/3.0/80x15.png" /></a>
</div>
</footer>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: false,
history: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/none
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>