-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1.html
executable file
·761 lines (673 loc) · 19.6 KB
/
1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Web Design is Awesome</title>
<meta name="viewport" content="width=1024">
<link rel="stylesheet" href="dist/coderdeck-core.min.css" type="text/css">
<link rel="stylesheet" id='style-theme-link' href="src/css/coderdeck.css" type="text/css" >
<script src='dist/jquery.min.js'></script>
<script src="dist/modernizr.js"></script>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700,300' rel='stylesheet' type='text/css'>
</head>
<body class="deck-container">
<script type='text/coderdeck' id='coderdeck-default'>
<html>
<head>
<script src='src/jquery.min.js'>SCRIPTEND
</head>
<body>
CODE
</body>
</html>
</script>
<script type='text/coderdeck' id='coderdeck-style-example'>
<html>
<title>test</title>
<style>
CODE
</style>
<body>
<h1>I'm a H1 heading</h1>
<h2>I'm a H2 heading</h2>
<h3>Pargraph of text <p> here</p>
<div class='stuff'>I'm a div <div> with class "stuff"</div>
<div id='my-div'>I'm a <div> with id "my-div"</div>
</body>
</html>
</script>
<!-- Create any number of elements with class slide within the container -->
<article class='slide slide-subhead'>
<h1>Web 1</h1>
<h2>Fall 2015</h2>
<a href='bit.ly/webOne'>bit.ly/webOne</a></p>
</article>
<article class='slide slide-list'>
<h1>Order of Business</h1>
<ol>
<li class="slide">
<h3>Welcome - Who, What, How</h3>
</li>
<li class="slide">
<h3>Administrivia</h3>
</li>
<li class="slide">
<h3>What is the Web</h3>
</li>
<li class="slide">
<h3>Open and closed source</h3>
</li>
<li class="slide">
<h3>HTML/CSS/JS</h3>
</li>
<li class="slide">
<h3>GitHubbery</h3>
</li>
<li class="slide">
<h3>State of the Web/Cutting Edge</h3>
</li>
</ol>
</article>
<article class='slide slide-title'>
<h1>Who am I?</h1>
</article>
<article class='slide slide-subhead'>
<h1>Me = Martha Rettig</h1>
</article>
<article class='slide slide-list'>
<h2>Martha Rettig /<span class="callout"> Designer</span></h2>
<ul>
<li class="slide">
<h3>B.A. in Graphic Design</h3>
</li>
<li class="slide">
<h3>MFA in Dynamic Media</h3>
</li>
<li class="slide">
<h3>13 years of agency experience in print & branding</h3>
</li>
<li class="slide">
<h3>7 years as creative director, web & UX design at cykod</h3>
</li>
<li class="slide"><h3>Work with <a href="http://www.startupinstitute.com/">StartUp Institute</a></h3>
</li>
<li class="slide"><h3>Work with lots of Startups</h3>
</li>
</li>
<li class="slide"><h3>Run the <a href="http://www.meetup.com/Boston-Frontend-Developers/">Front-end Developers Meetup</a></h3>
</li>
</ul>
</article>
<article class='slide slide-subhead'>
<h1>I <span class='large'>♥</span> the web</h1>
<h3>I want you to be as excited about the current state of the web as I am.</h3>
</article>
<article class='slide slide-accent'>
<h1>Course Goals</h1>
</article>
<article style='background-image:url(images/colored-bricks.jpg);' class='slide slide-background'>
<h1>Goal 1</h1>
</article>
<article style='background-image:url(images/colored-bricks.jpg);' class='slide slide-background-content'>
<div class="background-padding"><div class="background-wrapper"><h1>Get you comfortable with the basics</h1>
<h3 class='slide'>You've got to get your HTML, CSS, & Javascript down pat. They aren't going anywhere.</h3>
</div></div>
</article>
<article style='background-image:url(images/hydrant.jpg);' class='slide slide-background'>
<h1>Goal 2</h1>
</article>
<article style='background-image:url(images/hydrant.jpg);' class='slide slide-background-content'>
<div class="background-padding"><div class="background-wrapper"><h1>Teach you to drink from a firehose</h1>
<h3 class='slide'>Web design is too big and changes far to fast to know everything, you need to feel comfortable “winging it” and be able to learn on your own.</h3>
</article>
<article style='background-image:url(images/voodoo.jpg);' class='slide slide-background'>
<h1>Goal 3</h1>
</article>
<article style='background-image:url(images/voodoo.jpg);' class='slide slide-background-content'>
<div class="background-padding"><div class="background-wrapper"><h1>No voodoo</h1>
<h3 class='slide'>There is no magic. <br/>I repeat: there is no Magic.</h3>
</article>
<article style='background-image:url(images/html5-dude.jpg);' class='slide slide-background'>
<h1>Most Important Goal</h1>
</article>
<article style='background-image:url(images/html5-dude.jpg);' class='slide slide-background-content'>
<div class="background-padding"><div class="background-wrapper"><h1>Get you building stuff</h1>
<h3 class='slide'>To be able to turn ideas and designs into functioning web pages.</h3>
</article>
<article class='slide slide-list'>
<h2>How we're going to accomplish this</h2>
<ul>
<li class="slide">
<h3>Lots of Hands-on exercises.</h3>
</li>
<li class="slide">
<h3>Lots of Critical evaluation of websites.</h3>
</li>
<li class="slide">
<h3>Just enough lecture and theory to get by.</h3>
</li>
<li class="slide">
<h3>Not a one-size-fits-all approach.</h3>
</li>
</ul>
</article>
<article class='slide slide-accent'>
<h1>Administrivia</h1>
</article>
<article class='slide slide-subhead'>
<h1><a href="images/GD304-fall2015.pdf">Syllabus</a></h1>
</article>
<article class='slide slide-subhead'>
<h1>How We'll Collaborate</h1>
<p>Join<br/><a href='https://weblove.slack.com'>Slack</a><br/></p>
<p>This is how we'll collaborate, review work, and turn in some assignments.
</article>
<article class='slide slide-title'>
<h1>Class Content</h1>
</article>
<article class='slide slide-accent'>
<h1>What is the web?</h1>
</article>
<article class='slide slide-image'>
<h1><img src="images/wikipedia.png" class='top-image'/>Wikipedia Says:</h1>
<p class='slide'>
The world wide web is a system of interlinked
hypertext documents accessed via the Internet. With a
web browser, one can view web pages that may contain
text, images, videos, and other multimedia and navigate
between them via hyperlinks.
</p>
</article>
<article class='slide slide-accent'>
<h1>The Web is Content</h1>
</article>
<article class='slide slide-subhead'>
<h1>What can you do on the web?</h1>
<h2 class='slide'>Just about anything...</h2>
</article>
<article class='slide slide-list'>
<h1>The web is...</h1>
<ul>
<li class="slide">
<h3>"Brochure" websites: <a href='http://www.massart.edu/'>massart.edu</a></h3>
</li>
<li class="slide">
<h3>E-commerce: <a href='http://amazon.com'>amazon.com</a></h3>
</li>
<li class="slide">
<h3>Social Networking: <a href='http://twitter.com'>twitter.com</a> <a href='http://facebook.com'>facebook.com</a></h3>
</li>
<li class="slide">
<h3>Online/IRL Communities: <a href='http://meetup.com'>meetup.com</a> <a href='http://yelp.com'>yelp.com</a></h3>
</li>
<li class="slide">
<h3>Interactive Information Applications: <a href='http://maps.google.com'>maps.google.com</a></h3>
</li>
<li class='slide'>
<h3>Interactive Games: <a href='http://www.king.com/games/puzzle-games/candy-crush/?language=en_US&action=play'>CandyCrush</a></h3>
</li>
</ul>
</article>
<article class='slide slide-subhead'>
<h1>The web is....</h1>
<h2 class='slide'>Whatever you want to build.</h2>
</article>
<article class='slide slide-subhead'>
<h1>The Good:</h1>
<h2>If you can dream it,<br/> you can build it</h2>
</article>
<article class='slide slide-subhead'>
<h1>The Bad:</h1>
<h2>There's a <em>lot</em> to learn</h2>
</article>
<article class='slide slide-list'>
<h2>A Good Web designer<br/> needs to understand:</h2>
<ol>
<li class='slide'>
<h3>HTML</h3>
</li>
<li class='slide'>
<h3>CSS</h3>
</li>
<li class='slide'>
<h3>JavaScript</h3>
</li>
</ol>
</article>
<article class='slide slide-list'>
<h2>But also...</h2>
<ol>
<li class="slide">
<h3>Design Layout fundamentals</h3>
</li>
<li class="slide">
<h3>Typography</h3>
</li>
<li class="slide">
<h3>User Experience</h3>
</li>
<li class="slide">
<h3>Marketing</h3>
</li>
<li class='slide'>
<h3>Content Strategy</h3>
</li>
<li class="slide">
<h3>Search engines</h3>
</li>
</ol>
</article>
<article class='slide slide-accent'>
<h1>Who runs the internet?</h1>
</article>
<article class="slide slide-subhead">
<h1>Nobody</h1>
<p>(The lunatics are running the asylum)</p>
</article>
<article class="slide slide-list">
<h2>By General Agreement, the players:</h2>
<ol>
<li class='slide'>
<h3>Carriers have peering arrangements to deliver bandwidth (Comcast, Verizon)</h3>
</li>
<li class='slide'>
<h3>Standards groups promote “best” practices (W3C, WHATWG)</h3>
</li>
<li class='slide'>
<h3>Browser Makers implement whatever they want (Microsoft, Mozilla, Google, Opera)</h3>
</li>
<li class='slide'>
<h3>Servers serve pages (Apache, IIS, Nginx)</h3>
</li>
<li class='slide'>
<h3>Scripting languages talk to servers (PHP, C#, Python)</h3>
</li>
</ol>
</article>
<article class='slide slide-accent'>
<h1>What is open-source?</h1>
</article>
<article class='slide slide-list'>
<h2>Open and closed source</h2>
<ol>
<li class='slide'>
<h3>Free as in “Beer” vs. Free as in “Speech”</h3>
</li>
<li class='slide'>
<h3>Open-source does not mean without cost</h3>
</li>
<li class='slide'>
<h3>Closed source does not mean expensive</h3>
</li>
<li class='slide'>
<h3>(But usually that’s the case)</h3>
</li>
</ol>
</article>
<article class='slide slide-list'>
<h2>Know your license!</h2>
<p class='slide'>A sure way to fail this class and/or be kicked out of school and/or be sued is
to use <a href='http://bit.ly/o8iWW1'>copyrighted works illegally</p>
</h3>
<ol>
<li class='slide'>
<h3>CC BY, CC BY-SA, CC BY-ND, CC BY-NC, CC BY-NC-SA, CC BY-NC-ND</h3>
<h3>Attribution, Share-Alike, No-Derivitives, Non Commercial</h3>
<h3>(<a href='http://creativecommons.org/licenses/'>http://creativecommons.org/licenses/</a>)</h3>
</li>
<li class='slide'>
<h3>Unlicenses, public domain</h3>
</li>
<li class='slide'>
<h3>GPL, LGPL, AGPL</h3>
</li>
<li class='slide'>
<h3>BSD, MIT</h3>
</li>
</ol>
</article>
<article class='slide slide-accent'>
<h1>HTML / CSS / Javascript</h1>
</article>
<article class='slide slide-list'>
<h2>What's the point of each?</h2>
<ol>
<li class='slide'>
<h3>HTML <span class='slide'> - Semantics, Content, Information, Data</span></h3>
</li>
<li class='slide'>
<h3>CSS <span class='slide'> - Layout and Styling </span></h3>
</li>
<li class='slide'>
<h3>Javascript <span class='slide'> - Creating Dynamism, interaction</span></h3>
</li>
</ol>
</article>
<article class='slide slide-list'>
<h2>Let's look at a basic HTML site</h2>
<pre>
<!DOCTYPE html>
<html>
<head> .. Head Goes Here ... </head>
<body>
<header id='site-header'>
<h1 class='logo'>My Awesome Website</h1>
<nav id='main-nav'>
<ul>
<li><a href='item1.html'>Item 1</a></li>
<li><a href='item2.html'>Item 2</a></li>
</ul>
</nav>
</header>
<div id='site-wrapper'>
<section id='site-content'>
<article>
<h1>Header</h1>
<p>Lorem Ipsum</p>
</article>
</section>
</div>
<footer id='site-footer'> ... Footer Content ... </footer>
</body>
</html>
</pre>
</article>
<article class='slide slide-list'>
<h2>What's in the head?</h2>
<pre>
<head>
<title>My Web Page</title>
<link rel='stylesheet' href='style.css'>
<script src='jquery.min.js'></script>
<script src='application.js'></script>
</head>
... Site Content ...
</pre>
</article>
<article class='slide slide-subhead'>
<h1>What don't you see? (<a href='http://www.csszengarden.com/'>Hint</a>)</h1>
<h2>Which brings us to...</h2>
</article>
<article class='slide slide-list'>
<h1>Best Practices</h1>
<ol>
<li class='slide'>
<h3>Semantics: separate content from design</h3>
</li>
<li class='slide'>
<h3>Progressive Enhancement</h3>
</li>
<li class='slide'>
<h3>Capabilities, not browsers</h3>
</li>
<li class='slide'>
<h3>Responsive Design, beyond the desktop</h3>
</li>
</ol>
</article>
<article class='slide slide-list'>
<h1>How do you get your stuff online?</h1>
<ul>
<li class='slide'>
<h3>This is called deployment</h3>
</li>
<li class='slide'>
<h3>Normally you'll FTP your site to a host</h3>
</li>
<li class='slide'>
<h3>We're going to use <a href='http://github.com'>GitHub</a> - way cooler</h3>
<ul>
<li class='slide'>
<h3>let's you version control your code</h3>
</li>
<li class='slide'>
<h3>you can host static pages</h3>
</li><li class='slide'>
<h3>you will merge in new homework</h3>
</li>
</ul>
</li>
</ul>
</article>
<article class='slide slide-list'>
<h1>Let's try it now</h1>
<h4 class-'slide'>create a GitHub account</h4>
<ul>
<li class='slide'>
<h3>go to <a href='https://github.com/'>www.GitHub.com</a></h3>
</li>
<li class='slide'>
<h3>choose your username and pick a password</h3>
</li>
</ul>
<h4 class='slide'>Go Fork Yourself</h4>
<ul>
<li class='slide'>
<h3>go to <a href='https://github.com/marthar/spring2015'>https://github.com/marthar/spring2015</a></h3>
</li>
<li class='slide'>
<h3>click the fork button</h3>
</li>
<li class='slide'>
<h3>Click "settings" and change the repository name to [yourusername].github.io</h3>
</li>
<li class='slide'>
<h3>(Click back to Admin) Next click on "Collaborators," type in "marthar" and click add</h3>
</li>
<li class='slide'>
<h3>open or download GitHub for Mac <br/>
(store this on a key to make your life easier)</h3>
</li>
</ul>
</article>
<article class='slide slide-list'>
<h2>GitHub for Mac</h2>
<ul>
<li class='slide'>
<h3>Open it</h3>
</li>
<li class='slide'>
<h3>Put in your login info</h3>
</li>
<li class='slide'>
<h3>Find your "username.github.io" repository</h3>
<ul>
<li class='slide'>
<h3>click on "clone"</h3>
</li>
<li class='slide'>
<h3>clone it to your key or folder you can access later</h3>
</li>
<li class='slide'>
<h3>Double click on it</h3>
</li>
<li class='slide'>
<h3>click "open in finder"<h3>
</li>
<li class='slide'>
<h3>open the "meeee" folder and edit the index.html file in textmate </h3>
</li>
<li class='slide'>
<h3>go back to GitforMac and commit your changes</h3>
</li>
<li class='slide'>
<h3>sync your repository<h3>
</li>
</ul>
</li>
</ul>
</article>
<article class='slide slide-subhead'>
<h1>Your Done!</h1>
<p>Go to [username].github.io/meeee</p>
<p>wasn't that easy? <br/>(don't worry we'll do it all over again next week)</p>
</article>
<article class='slide slide-accent'>
<h1>now for some fun </h1>
<p>(at least what we call fun)</p>
</article>
<article class='slide slide-subhead'>
<h1>Let's Watch a Video</h1>
<h3><a href="http://www.dontfeartheinternet.com/the-basics/not-tubes">Don't Fear the Internet</a></h3>
<p>by the amazing Jessica Hische & Russ Maschmeyer</p>
</article>
<article class='slide slide-subhead'>
<h1>Text Editors</h1>
<h3><a href="http://www.sublimetext.com/">Sublime</a></h3>
<h3><a href="http://macromates.com/download">Textmate</a></h3>
<h3><a href="http://www.barebones.com/products/textwrangler/">TextWrangler</a></h3>
</article>
<article class='slide slide-list'>
<h1>State o' the art</h1>
<ol>
<li>
<h3><a href='http://www.findyourwaytooz.com/'>Find Your Way to OZ</a></h3>
</li>
<li>
<h3><a href='http://spacecraftforall.com/home'>Space Craft for All</a></h3>
</li>
<li>
<h3><a href='http://www.hashtagmyass.com/'>Hashtag My Ass</a></h3>
</li>
<li>
<h3><a href='http://road-rage.carcraft.co.uk/'>Road Rage</a></h3>
</li>
<li>
<h3><a href='http://burendag.de.nl/'>Impress.js</a></h3>
</li>
<li>
<h3><a href='http://www.allisnotlo.st/index_en.html'>All Is Not Lost</a></h3>
</li>
<li>
<h3><a href='http://ro.me'>Ro.me</a></h3>
</li>
<li>
<h3><a href='http://www.thewildernessdowntown.com/'>The Wilderness Downtown</a></h3>
</li>
<li>
<h3><a href='http://www.papertoilet.com/'>Paper Toilet</a></h3>
</li>
</ol>
<h1>Trends</h1>
<ol>
<li >
<h3>Video</h3>
</li>
<li>
<h3><a href='http://whiteboard.is/'>White Board</a></h3>
</li>
<li>
<h3><a href='http://www.ovenbits.com/'>Ovenbits</a></h3>
</li>
<li>
<h3><a href='http://www.google.com/photos/about/'>Google Photos</a></h3>
</li>
<li>
<h3><a href='http://www.squarespace.com/stories/'>Square Space</a></h3>
</li>
<li>
<h3><a href='http://aspenhomes.com/'>Aspen Homes</a></h3>
</li>
<li>
<h3><a href='http://iridemobile.com/'>I Ride</a></h3>
</li>
<li>
<h3><a href='https://www.marmosetmusic.com/'>Marmoset Music</a></h3>
</li>
<li>
<h3><a href='http://www.clicky.co.uk/'>Clicky</a></h3>
</li>
<li>
<h3><a href='http://storiesofchange.worldpressphoto.org/stories'>Stories of Change</a></h3>
</li>
<li>
<h3><a href='http://toolofna.com/#!/home'>Tool</a></h3>
</li>
<li>
<h3>Parallax</h3>
</li>
<li>
<h3><a href='http://mainequarterly.com/'>Maine Quarterly</a></h3>
</li>
<li>
<h3><a href='http://www.evanshalshaw.com/bondcars/'>Bond Cars</a></h3>
</li>
<li>
<h3><a href='http://bellbros.com/'>Bell Bros</a></h3>
</li>
<li>
<h3><a href='http://tesla.aziznatour.com/'>Tesla</a></h3>
</li>
<li>
<h3><a href='http://www.knocktounlock.com/'>Knock</a></h3>
</li>
<li>
<h3><a href='http://www.creativity101.com/'>Creativity 101</a></h3>
</li>
<li>
<h3><a href='http://gardenestudio.com.br/'>Garden Studio</a></h3>
</li>
<li>
<h3><a href='http://cyclemon.com/'>Cycle Mon</a></h3>
</li>
<li>
<h3><a href='http://www.mahedineyahia.fr/'>Mahe</a></h3>
</li>
<li>
<h3><a href='http://journey.lifeofpimovie.com/#!/richard-parker'>Life of Pi</a></h3>
</li>
</ol>
</article>
<article class='slide slide-homework' id="homework-1">
<h2>Homework</h2>
<h3>Reading</h3>
<ul>
<li>
<h3><a href='http://www.alistapart.com/articles/dao/'>A Dao of Web Design by John Allsopp</a>
</h3>
</li>
<li>
<h3><a href='http://www.fastcodesign.com/3032719/ui-ux-who-does-what-a-designers-guide-to-the-tech-industry'>UI, UX: Who Does What? A Designer's Guide to the Tech Industry</a>
</h3>
</li>
<li>
<h3><a href='http://www.amazon.com/HTML-CSS-Design-Build-Websites/dp/1118008189/ref=sr_1_1?ie=UTF8&qid=1359387442&sr=8-1&keywords=html+%26+css'>Buy this Book</a>
</h3>
</li>
</ul>
<h3>Coding</h3>
<ul>
<li>
<h3>Finish entering your name, class and info</h3>
</li>
<li>
<h3>Add the link to your completed homework to your homework file- then Push to Github</h3>
</li>
<li>
<h3>Email me a link to your Github homework sheet (yourusername.github.io/homework.com)</h3>
</li>
</ul>
</ul>
</article>
<article class='slide slide-list'>
<h1>Questions and/or Problems?</h1>
<ul>
<li>
<h3>if it's a general question that the rest of the class might benefit from seeing post a message at <a href="http://groups.google.com/group/webfall2014-friday">Friday google groups</a> or <a href="http://groups.google.com/group/webfall2014-monday">Monday google groups</a></h3>
</li>
<li>
<h3>email me : <a href="mailto:[email protected]">[email protected]</a></h3>
</li>
<li>
<h3>I have office hours here at MassArt in T609 on Mondays from 1:00-2:00 and Fridays by appointment</h3>
</li>
</ul>
</article>
<script src='dist/coderdeck.min.js'></script>
<script>
$(function() {
$.deck('.slide');
});
</script>
</body>
</html>