-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path9.html
executable file
·909 lines (744 loc) · 25.6 KB
/
9.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A Web of Typographic Love</title>
<meta name="viewport" content="width=1024">
<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-plain'>
<html>
<title>test</title>
<link rel="stylesheet" href="reset.css">
<body>
CODE
</body>
</html>
</script>
<script type='text/coderdeck' id='coderdeck-css-playground'>
<html>
<title>test</title>
CODE
<body>
<h1>I'm a H1 heading</h1>
<h2>I'm a H2 heading</h2>
<p>Pargraph of text <p></p>
<div class='stuff'><div> with class "stuff"</div>
<div id='my-div'><div> with id "my-div"</div>
</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>Typography & the Web</h1>
<h2>Week 9</h2>
<p><a href='http://marthar.github.com/webfall-2015/9.html'>http://marthar.github.com/webfall-2015/9.html</a></p>
</article>
<article class='slide slide-list'>
<h1>Order of Business</h1>
<ul>
<li class="slide">
<h3>History of Type on the Web</h3>
</li>
<li class="slide">
<h3>CSS3 & @font-face</h3>
</li>
<li class="slide">
<h3>Licensing vs Free</h3>
</li>
<li class="slide">
<h3>Choosing Fonts</h3>
</li>
<li class="slide">
<h3>Combining Fonts</h3>
</li>
<li class="slide">
<h3>Typography</h3>
</li>
<li class="slide">
<h3>Tips & Tricks</h3>
</li>
<li class="slide">
<h3>Flare</h3>
</li>
</ul>
</article>
<article class="slide slide-list">
<h1>In the past you were limited too...</h1>
<ul>
<li class="slide">
<h3>Web-safe fonts (working with the same 5 fonts)</h3>
<ul>
<li class="slide">
<h3>Arial</h3>
</li>
<li class="slide">
<h3>Georgia</h3>
</li>
<li class="slide">
<h3>Verdana</h3>
</li>
<li class="slide">
<h3>Times</h3>
</li>
<li class="slide">
<h3>Trebuchet</h3>
</li>
</ul>
</li>
<li class="slide">
<h3>Image Replacement, sIFR, Cufon,...</h3>
<ul>
<li class="slide">
<h3>accessibility issues</h3>
</li>
<li class="slide">
<h3>a pain to maintain</h3>
</li>
<li class="slide">
<h3>flash of content</h3>
</li>
<li class="slide">
<h3>dependent on Javacript or Flash</h3>
</li>
<li class="slide">
<h3>Way more painful to implement</h3>
</li>
</li>
</ul>
</article>
<article class="slide slide-subhead">
<h1>Today we have</h1>
<h2>CSS3 & @font-face</h2>
<pre> @font-face {
src: url(Beautiful-ES.ttf);
font-family: "Beautiful";
}</pre>
</article>
<article class='slide slide-list'>
<h1>Pros</h1>
<ul>
<li class="slide">
<h3>We have more fonts to use!.</h3>
</li>
<li class="slide">
<h3>Dynamic, selectable, printable, and easily edited text</h3>
</li>
<li class="slide">
<h3>Easy to implement</h3>
</li>
<li class="slide">
<h3>Smaller and faster loading pages than images</h3>
</li>
</ul>
</article>
<article class='slide slide-list'>
<h1>Cons</h1>
<ul>
<li class="slide">
<h3>Easy to overuse. Lots of funs fonts don’t make good designs, good designers make good designs</h3>
</li>
<li class="slide">
<h3>Licensing - if it’s not open sourced and you don’t have a license - don’t use it</h3>
</li>
<li class="slide">
<h3>FOUT (flash of unstyled text)</h3>
</li>
<li class="slide">
<h3>Rendering differences
(pixel perfection should be a thing of the past)</h3>
</li>
</ul>
</article>
<article class='slide slide-accent'>
<h1>Where do you find fonts?</h1>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>Hosted Platforms</h2>
</article>
<article style='background-image:url(images/typekit.jpg);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://typekit.com/">Typekit</a></h1>
</div></div>
</article>
<article style='background-image:url(images/fontdeck.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://fontdeck.com/">FontDeck</a></h1>
</div></div>
</article>
<article style='background-image:url(images/fontscom.jpg);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://www.fonts.com/">Fonts.com</a></h1>
</div></div>
</article>
<article style='background-image:url(images/hoefler.jpg);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://www.typography.com/cloud/welcome/">Hoefler Cloud Typography</a></h1>
</div></div>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>Buying a License</h2>
</article>
<article style='background-image:url(images/myfonts.jpg);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://new.myfonts.com/">MyFonts</a></h1>
</div></div>
</article>
<article style='background-image:url(images/fontspring.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://www.fontspring.com/">FontSpring</a></h1>
</div></div>
</article>
<article style='background-image:url(images/webtype.jpg);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://www.webtype.com/">Webtype</a></h1>
</div></div>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>Free Fonts</h2>
</article>
<article style='background-image:url(images/googlefont.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://www.google.com/webfonts#ChoosePlace:select">Google Web Fonts</a></h1>
</div></div>
</article>
<article style='background-image:url(images/fontsquirrel.jpg);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://www.fontsquirrel.com/">Font Squirrel</a></h1>
</div></div>
</article>
<article style='background-image:url(images/leaguetype.jpg);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<h1><a href="http://www.theleagueofmoveabletype.com/">The League of Moveable Type</a></h1>
</div></div>
</article>
<article class='slide slide-list'>
<h1>Free Problems</h1>
<ul>
<li class="slide">
<h3>Quality not guaranteed</h3>
</li>
<li class="slide">
<h3>Unknown rendering (hinting)</h3>
</li>
<li class="slide">
<h3>Poorly drawn</h3>
</li>
<li class="slide">
<h3>Poorly kerned</h3>
</li>
</ul>
</article>
<article class='slide slide-subhead'>
<h2><br/>Complete Sets<br/></h2>
<img src='images/free-font.png'/>
</article>
<article class='slide slide-subhead'>
<h2><br/>Font Hinting<br/></h2>
<img src='images/hinting.png'/>
<a href="http://en.wikipedia.org/wiki/Font_hinting">via Wikipedia</a>
</article>
<article class='slide slide-subhead'>
<h2><br/>Kerning<br/></h2>
<img src='images/kerning.png'/>
</article>
<article class='slide slide-list'>
<h1>Licensing</h1>
<ul>
<li class="slide">
<h3>Make sure you own the license</h3>
</li>
<li class="slide">
<h3>Read the EULA</h3>
</li>
<li class="slide">
<h3>Desktop licenses are not the same as web</h3>
</li>
<li class="slide">
<h3>Avoid liability issues</h3>
</li>
</ul>
</article>
<article class='slide slide-accent'>
<h1>How to choose fonts for the Web</h1>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>Know your audience and platform</h2>
</article>
<article class='slide slide-list'>
<h2><br/>Large x-height & counters for body text<br/></h2>
<p>the larger the bowls on letters like “b” and “h” the easier your text will be to read on a screen, especially at small sizes.</p>
<img src='images/counters.png'/>
</article>
<article class='slide slide-list'>
<h2><br/>Check your 1, I, and l<br/></h2>
<p>the number one, capital “i”, and lowercase “L” should be distinct.</p>
<img src='images/ls.png'/>
</article>
<article class='slide slide-list'>
<h2><br/>Readability<br/></h2>
<p>At small sizes fonts with larger variation in weights will be harder to read.</p>
<img src='images/readability.png'/>
</article>
<article class='slide slide-list'>
<h2><br/>Headline vs Text<br/></h2>
<img src='images/headline.png'/>
</article>
<article class='slide slide-list'>
<h2><br/>Appropriate<br/></h2>
<p>Always honor your content and audience first.
Choose fonts that are relevant to your subject before choosing what’s new and trendy.</p>
<img src='images/lobster.png'/>
</article>
<article style='background-image:url(images/nytimes.png);' class='slide slide-background'>
</article>
<article class='slide slide-accent'>
<h1>Combining Fonts</h1>
</article>
<article class='slide slide-list'>
<h1>Combining Fonts</h1>
<ul>
<li class="slide">
<h3>KISS (Keep It Simple Stupid)</h3>
</li>
<li class="slide">
<h3>Don't over complicate: limit yourself to 2 Styles</h3>
</li>
<li class="slide">
<h3>San Serif + Serif always works</h3>
</li>
<li class="slide">
<h3>avoid similar styles/classifications</h3>
</li>
</ul>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>Go for contrast</h2>
</article>
<article class='slide slide-list'>
<h2>The Golden Ratio:<br/> Heading to Body font size</h2>
<p>Heading font size ÷ Body copy font size = 1.96<br/><br/>What this really means is that if you double your body size you will almost always have enough contrast in weight from the heading.</p>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>Though the current trend is big headlines...</h2>
</article>
<article style='background-image:url(images/monsters.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://designingmonsters.com/">designingmonsters.com</a></p>
</div></div>
</article>
<article style='background-image:url(images/giant.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://solidgiant.com/">solidgiant.com</a></p>
</div></div>
</article>
<article style='background-image:url(images/fittext.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://fittextjs.com/">fittextjs.com</a></p>
</div></div>
</article>
<article style='background-image:url(images/brandconf.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://underconsideration.com/brandnewconference/">underconsideration.com/brandnewconference</a></p>
</div></div>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>Limiting yourself to one font can work beautifully as well.</h2>
</article>
<article style='background-image:url(images/seedconf.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://seedconference.com/">seedconference.com</a></p>
</div></div>
</article>
<article style='background-image:url(images/helvetica.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://www.lovehelvetica.com/">lovehelvetica.com</a></p>
</div></div>
</article>
<article style='background-image:url(images/legistyles.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://legistyles.com/">legistyles.com</a></p>
</div></div>
</article>
<article style='background-image:url(images/needtype.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://julianhansen.com/files/infographiclarge_v2.png">So You Need A Typeface by Julian Hansen</a></p>
</div></div>
</article>
<article class='slide slide-accent'>
<h1>Why you Should Care about Typography on the Web</h1>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>Typography is not picking a "cool" font -Jeff Croft</h2>
</article>
<article class='slide slide-subhead'>
<h2><br/>Good typography is the easiest way to quickly make your site look good.<br/><br/>
But most importantly, it will make your site easier to read and navigate for users.</h2>
</article>
<article class='slide slide-list'>
<h1>Hierarchy</h1>
<ul>
<li class="slide">
<h3>Decide what is most important
and NOT everything can be important.</h3>
</li>
<li class="slide">
<h3>Make more important things are bigger.</h3>
</li>
<li class="slide">
<h3>Make less important smaller.</h3>
</li>
<li class="slide">
<h3>Add emphasis with color, weight and style.</h3>
</li>
</ul>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/><br/>You need to decide what’s important</h2>
</article>
<article style='background-image:url(images/yvettes.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://yvettesbridalformal.com/">yvettesbridalformal.com</a></p>
</div></div>
</article>
<article style='background-image:url(images/cmornings.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://www.creativemornings.com/">creativemornings.com</a></p>
</div></div>
</article>
<article class='slide slide-subhead'>
<img src='images/cmorning-close.png'/>
<p>big headline, med body, small detail, red box for emphasis, red type for emphasis</p>
</article>
<article class='slide slide-list'>
<h1>Size</h1>
<h3>16px is the new minimum body text size</h3>
</article>
<article class='slide slide-list'>
<h1>Space</h1>
<ul>
<li class="slide">
<h3>Keep line length readable, not too long or short.</h3>
</li>
<li class="slide">
<h3>Adjust the line-height to give more</h3>
</li>
<li class="slide">
<h3>White space</h3>
</li>
</ul>
</article>
<article class='slide slide-list'>
<h2>How Many Characters Per Line?</h2>
<h3>According to Robert Bringhurst 45 to 75.<br/>
Recent web studies show that 66 might be the “web ideal”</h3>
</article>
<article class='slide slide-list'>
<h2>Line Height</h2>
<img src='images/line-height.png'/>
</article>
<article class='slide slide-list'>
<h2>Letter Spacing</h2>
<img src='images/letter-spacing.png'/>
</article>
<article class='slide slide-list'>
<h2>embrace white space</h2>
<h3>Not every pixel needs to be covered in text or graphics.<br/><br/>
White space doesn’t have to be white, it can be red, green, black, or patterned. It’s simply space that is left vacant.<br/><br/>
The vacant space makes it easier for the reader to navigate through the content of your site.<br/></h3>
</article>
<article class='slide slide-accent'>
<h1>Be a type rockstar</h1>
</article>
<article class='slide slide-list'>
<h2>- hyphen</h2>
<h3>used to separate the words in a compound adjective, verb, or adverb.</h3><br/>
<h3><em>The friendly-looking man in the front is waiting for a much-needed break.</em></h3>
</article>
<article class='slide slide-list'>
<h2>– the en dash</h2>
<h3>used to express a range of values or a distance</h3><br/>
<h3><em>The Red Sox beat the Yankees 4–0.</em></h3>
</article>
<article class='slide slide-list'>
<h2>— the em dash</h2>
<h3>used to indicate a break in though</h3><br/>
<h3><em>The pizza—with warm cheese and spicy pepperoni—was delicious.</em></h3>
</article>
<article class='slide slide-list'>
<h2>Be Smart not Dumb</h2>
<h3 class="big"><em>'dumb double quotes'<br/>
“smart double quotes”</em>
</h3>
<p>&#8220 = opening double quotes
&#8221 = closing double quotes</p><br/><br/>
<h3 class="big"><em>'dumb single quotes'<br/>
‘smart single quotes’</em>
</h3>
<p>&#8216 = opening single quote
&#8217 = closing single quote</p>
</article>
<article class='slide slide-subhead'>
<h1><a href="http://www.jimgodfreydesign.com/typeSins.pdf">Thirty-Four Typographic Sins by Jim Godfrey</a></h1>
</article>
<article class='slide slide-accent'>
<h1>Getting your fonts into your site</h1>
</article>
<article class='slide slide-subhead'>
<h2><br/>Browser Support<br/><br/></h2>
<img src='images/browsers.png'/>
</article>
<article class='slide slide-list'>
<h1>@font-face</h1>
<ul>
<li class="slide">
<h3>Adds “font-family” fonts you can use with CSS</h3>
</li>
<li class="slide">
<h3>Currently you need to provide 4 different versions of the same font to cover all browsers</h3>
</li>
<li class="slide">
<h3>Don’t worry about the specifics
use a generator like fontsquirrel.com
or use a hosting service</h3>
</li>
</ul>
</article>
<article class='slide slide-list'>
<h2>Raw Code</h2>
<pre>@font-face {
font-family: "Your typeface";
src: url("type/filename.eot");
src: local("☺"),
url("type/filename.woff") format("woff"),
url("type/filename.otf") format("opentype"),
url("type/filename.svg#filename") format("svg");
}
@font-face {
font-family: "Your italic typeface";
src: url("type/filename-ital.eot");
src: local("☺"),
url("type/filename-ital.woff") format("woff"),
url("type/filename-ital.otf") format("opentype"),
url("type/filename-ital.svg#filename-ital") format("svg");
}</pre>
<p><em>Don’t write this - cut and paste from your generator</em></p>
</article>
<article class='slide slide-list'>
<h2>Link Code</h2>
<pre><link href='http://fonts.googleapis.com/css?family=FontName&v2' rel='stylesheet' type='text/css'></pre>
<p><em>Example from Google Fonts</em></p>
</article>
<article class='slide slide-list'>
<h2>Your CSS</h2>
<pre>h2 { font-family: "Your typeface", Georgia, serif; }</pre>
<p><em>Style as Usual</em></p>
</article>
<article class='slide slide-list'>
<h2>Exercise 1: Load Some Google Fonts</h2>
<p>Load a different font for your H1, and your P from <a href='http://www.google.com/webfonts'>Google Fonts</a></p>
<textarea class='coder-editor coder-editor-full' data-coder-template="coderdeck-plain" data-language='html'>
<html>
<head>
</head>
<body>
<section id='content'>
<article class='blog-post'>
<h1>Blog Post 1</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac elit at nisl sagittis consequat sed eget tellus. Aliquam gravida, nunc sit amet viverra dictum, nibh justo semper massa</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac elit at nisl sagittis consequat sed eget tellus. Aliquam gravida, nunc sit amet viverra dictum, nibh justo semper massa</p>
</article>
<article class='blog-post'>
<h1>Blog Post 1</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac elit at nisl sagittis consequat sed eget tellus. Aliquam gravida, nunc sit amet viverra dictum, nibh justo semper massa</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ac elit at nisl sagittis consequat sed eget tellus. Aliquam gravida, nunc sit amet viverra dictum, nibh justo semper massa</p>
</article>
</section>
</body>
</html>
</textarea>
</article>
<article style='background-image:url(images/letteringjs.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://letteringjs.com/">letteringjs.com</a></p>
</div></div>
</article>
<article class='slide slide-list'>
<h2>Exercise 2: Lettering JS</h2>
<p>Let's load in some google fonts and style the gettysburg address with lettering js</p>
<textarea class='coder-editor coder-editor-full' data-template='coderdeck-full-page' data-language='html'>
<html>
<head>
<script src='src/jquery.min.js'></script>
<script src='src/jquery.lettering.js'></script>
<link rel="stylesheet" href="reset.css">
<style>
.word1 { font-size:50px; }
.word1 .char2 {color:red; }
</style>
</head>
<body>
<p>Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.</p>
<script>
$(document).ready(function() {
$("p").lettering("words");
$("p > span").lettering();
});
</script>
</body>
</html>
<style>
</style>
</textarea>
</article>
<article class='slide slide-accent'>
<h1>Tips & Tricks</h1>
</article>
<article class='slide slide-subhead'>
<h1>useful tools</h1>
</article>
<article style='background-image:url(images/fffallback.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://ffffallback.com/">ffffallback.com/</a></p>
</div></div>
</article>
<article style='background-image:url(images/soma.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://somadesign.ca/projects/fontfriend/">somadesign.ca/projects/fontfriend/</a></p>
</div></div>
</article>
<article style='background-image:url(images/whatfont.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://chengyinliu.com/whatfont.html">chengyinliu.com/whatfont.html</a></p>
</div></div>
</article>
<article style='background-image:url(images/modernscale.jpg);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://typecast.com/blog/a-more-modern-scale-for-web-typography">http://typecast.com/blog/a-more-modern-scale-for-web-typography</a></p>
</div></div>
</article>
<article class='slide slide-list'>
<h2>In the Wild</h2>
<ul>
<li><a href="http://www.typewolf.com/">http://www.typewolf.com/</a></li>
<li><a href="http://www.typeandgrids.com/blog">http://www.typeandgrids.com/blog/</a></li>
<li><a href="http://blog.typekit.com/category/using-type/">http://blog.typekit.com/category/using-type/</a></li>
</ul>
</article>
<article class='slide slide-subhead'>
<h2><br/><br/>
Font Effects....</h2>
</article>
<article style='background-image:url(images/spooner.png);' class='slide slide-background-content-footer'>
<div class="background-padding"><div class="background-wrapper">
<p><a href="http://line25.com/articles/using-css-text-shadow-to-create-cool-text-effects">Demos</a></p>
</div></div>
</article>
<article class='slide slide-list'>
<h2>Exercise 3: Font Effects</h2>
<p><a href="http://line25.com/articles/using-css-text-shadow-to-create-cool-text-effects">Tutorial</a></p>
<textarea class='coder-editor coder-editor-full' data-language='html'>
<style>
</style>
<div class='vintage-me'>Let's go Vintage Retro</div>
<div class='neon-me'>Neon is cool</div>
<div class='inset-me'>Let's go inset</div>
<div class='fire-me'>How about some fire</div>
</textarea>
</article>
<article class='slide slide-list'>
<h1>More Resources</h1>
<ul>
<li class="slide">
<h3>lettering.js</h3>
</li>
<li class="slide">
<h3>typebutter.com</h3>
</li>
<li class="slide">
<h3>fittextjs.com</h3>
</li>
<li class="slide">
<h3>http://kerningjs.com/</h3>
</li>
<li class="slide">
<h3>http://www.kernjs.com/</h3>
</li>
<li class="slide">
<h3>ifontyou.com</h3>
</li>
<li class="slide">
<h3>typedia.com</h3>
</li>
<li class="slide">
<h3>ilovetype.com</h3>
</li>
</ul>
</article>
<article class='slide slide-list'>
<h2>Exercise 3: Download and implement a FontSquirrel Font</h2>
<p>Add League Gothic to your most recent version of Cats vs Dogs then synch/push to github<a href='http://www.fontsquirrel.com/fonts/League-Gothic'>League Gothic</a></p>
</article>
<article class='slide slide-homework'>
<h2>Homework</h2>
<h3 class='slide'>Reading</h3>
<ul class='slide'>
<li>
<h3><a href='http://www.alistapart.com/articles/on-web-typography/'>On Web Typography by Jason Santa Maria</a>
</h3>
</li>
<li>
<h3><a href='http://www.jordanm.co.uk/post/93444774181/how-i-test-type-and-layout'>How I Test Type and Layout</a>
</h3>
</li>
</ul>
<h3 class='slide'>Coding</h3>
<ul class='slide'>
<li>
<h3>Download League Gothic and use it in your Cats vs. Dogs to make the logo
Georgia Bold italic for the 'vs'
</h3>
</li>
<li>
<h3>Final Project - final mockup designs for ALL pages
</h3>
</li>
</ul>
</ul>
</article>
<script src='dist/coderdeck.min.js'></script>
<!-- Prettify -->
<script src="src/prettify.js"></script>
<script>
$(function() {
$.deck('.slide');
});
</script>
</body>
</html>