brandy 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile +4 -0
  3. data/Rakefile +1 -0
  4. data/app/helpers/brandy_helper.rb +42 -0
  5. data/brandy.gemspec +24 -0
  6. data/lib/brandy.rb +15 -0
  7. data/lib/brandy/engine.rb +8 -0
  8. data/lib/brandy/version.rb +3 -0
  9. data/lib/stylesheets/_brandy.sass +1 -0
  10. data/lib/stylesheets/brandy/buttons.sass +107 -0
  11. data/lib/stylesheets/brandy/colors.sass +40 -0
  12. data/lib/stylesheets/brandy/components.sass +48 -0
  13. data/lib/stylesheets/brandy/forms.sass +33 -0
  14. data/lib/stylesheets/brandy/gradiants.sass +68 -0
  15. data/lib/stylesheets/brandy/grid-system.sass +70 -0
  16. data/lib/stylesheets/brandy/icons.sass +214 -0
  17. data/lib/stylesheets/brandy/responsive-elements.sass +3 -0
  18. data/lib/stylesheets/brandy/typography.sass +92 -0
  19. data/lib/templates/project/manifest.rb +11 -0
  20. data/lib/templates/project/screen.sass +2 -0
  21. data/vendor/assets/fonts/HelveticaNeueBold-demo.html +628 -0
  22. data/vendor/assets/fonts/HelveticaNeueLight-demo.html +628 -0
  23. data/vendor/assets/fonts/entypo-webfont.eot +0 -0
  24. data/vendor/assets/fonts/entypo-webfont.svg +165 -0
  25. data/vendor/assets/fonts/entypo-webfont.ttf +0 -0
  26. data/vendor/assets/fonts/entypo-webfont.woff +0 -0
  27. data/vendor/assets/fonts/helveticaneue-webfont.eot +0 -0
  28. data/vendor/assets/fonts/helveticaneue-webfont.svg +247 -0
  29. data/vendor/assets/fonts/helveticaneue-webfont.ttf +0 -0
  30. data/vendor/assets/fonts/helveticaneue-webfont.woff +0 -0
  31. data/vendor/assets/fonts/helveticaneuebold-webfont.eot +0 -0
  32. data/vendor/assets/fonts/helveticaneuebold-webfont.svg +246 -0
  33. data/vendor/assets/fonts/helveticaneuebold-webfont.ttf +0 -0
  34. data/vendor/assets/fonts/helveticaneuebold-webfont.woff +0 -0
  35. data/vendor/assets/fonts/helveticaneuelight-webfont.eot +0 -0
  36. data/vendor/assets/fonts/helveticaneuelight-webfont.svg +246 -0
  37. data/vendor/assets/fonts/helveticaneuelight-webfont.ttf +0 -0
  38. data/vendor/assets/fonts/helveticaneuelight-webfont.woff +0 -0
  39. data/vendor/assets/fonts/helveticaneuemedium-webfont.eot +0 -0
  40. data/vendor/assets/fonts/helveticaneuemedium-webfont.svg +249 -0
  41. data/vendor/assets/fonts/helveticaneuemedium-webfont.ttf +0 -0
  42. data/vendor/assets/fonts/helveticaneuemedium-webfont.woff +0 -0
  43. metadata +99 -0
@@ -0,0 +1,214 @@
1
+ @import "compass/css3/background-clip"
2
+ @import "compass/css3/inline-block"
3
+ @import 'colors'
4
+ // Font-face ----------------------------------------------------------------
5
+ @font-face
6
+ // This declaration targets Internet Explorer
7
+ font-family: 'EntypoRegular'
8
+ src: font-url('entypo-webfont.eot')
9
+
10
+ @font-face
11
+ // This declaration targets everything else
12
+ font-family: 'EntypoRegular'
13
+ src: url(//:) format("no404"), font-url('entypo-webfont.woff') format("woff"), font-url('entypo-webfont.ttf') format("truetype"), font-url('entypo-webfont.svg#EntypoRegular') format("svg")
14
+
15
+ [class^="icon-"]:before, [class*=" icon-"]:before
16
+ +inline-block
17
+ font-family: 'EntypoRegular'
18
+ font-size: 2em
19
+ font-style: normal
20
+ font-weight: normal
21
+ line-height: 1em
22
+ margin: -0.5em 0.115em -0.5em -0.077em
23
+ vertical-align: -0.077em
24
+
25
+ $icon-listA: (add-user, '-'), (arrow, '3')
26
+ $icon-listB: (backward, 'Å'), (bag, 'I'), (bell, '='), (bullet-list, '®'), (buoy, 'K')
27
+ $icon-listC: (calendar, 'P'), (camera, 'D'), (card, '.'), (chat, '9'), (clock, 'N'), (cloud, 'y'), (cloud-upload, 'z'), (compass,'2'), (creative-commons, '©'), (cross, 'X'), (cross-round, '['), (cup, 'B')
28
+ $icon-listD: (directions, '$'), (down, 'é'), (down-fat, 'ä'), (down-round, 'í'), (download, 'x'), (drawer, 't')
29
+ $icon-listE: (ellipsis, 'ö'), (expand, 'Ñ'), (extract, '/'), (eye, 'M')
30
+ $icon-listF: (flashlight, 'A'), (flag, '?'), (folder, 's'), (forbidden, '^'), (forward, 'Ä'), (forward-arrow, '*')
31
+ $icon-listG: (gear, '@')
32
+ $icon-listH: (heart, '6'), (home, 'ï'), (hourglass, 'R')
33
+ $icon-listI: (inbox, 'w'), (info, '_'), (info-round, '`')
34
+ $icon-listL: (leaf, 'G'), (left, 'ç'), (left-fat, 'â'), (left-round, 'ë'), (lightning, 'Q'), (like, '8'), (link, '>'), (list, 'i'), (list-add, 'j'), (lock, 'U'), (load, 'á')
35
+ $icon-listM: (mail, '%'), (map, '1'), (marker, '0'), (mic, 'O'), (minus, '\\'), (minus-round, 'Y'), (mobile, '"'), (moon, 'E'), (movie, 'q'), (music, 'r'), (music-note, 'H'), (mute, 'à')
36
+ $icon-listN: (new-tab, 'ò'), (next, 'É')
37
+ $icon-listO: (outbox, 'v')
38
+ $icon-listP: (page, 'm'), (pages, 'n'), (page-list, 'l'), (palette, 'F'), (paperclip, '\''), (path, '5'), (pause, '|'), (pencil, '&'), (phone, '!'), (pictures, 'p'), (plane, 'J'), (play, '{'), (plus, ']'), (plus-round, 'Z'), (previous, 'Ç'), (price-tag, 'C'), (printer, '<')
39
+ $icon-listQ: (quote, ';')
40
+ $icon-listR: (rain, 'L'), (read, 'ó'), (record, '~'), (redo, 'd'), (reduce, 'Ö'), (refresh, 'h'), (reply, '('), (reply-all, ')'), (revert, 'g'), (ribbon, 'ñ'), (right, 'ê'), (right-fat, 'å'), (right-round, 'î'), (rss, 'S')
41
+ $icon-listS: (speech, ':'), (star, '7'), (swap, ''f)
42
+ $icon-listT: (tag, '#'), (target, '4'), (tick, 'W'), (thumbs, 'k'), (trash, 'u')
43
+ $icon-listU: (undo, 'e'), (unlock, 'V'), (up, 'è'), (up-fat, 'ã'), (up-round, 'ì'), (user, '+'), (users, ',')
44
+ $icon-listV: (volume, 'Ü')
45
+ $icon-listW: (warning, 'c'), (wifi, 'S')
46
+
47
+ @each $icon in $icon-listA
48
+ .icon-#{nth($icon, 1)}:before
49
+ content: nth($icon, 2)
50
+
51
+ @each $icon in $icon-listB
52
+ .icon-#{nth($icon, 1)}:before
53
+ content: nth($icon, 2)
54
+
55
+ @each $icon in $icon-listC
56
+ .icon-#{nth($icon, 1)}:before
57
+ content: nth($icon, 2)
58
+
59
+ @each $icon in $icon-listD
60
+ .icon-#{nth($icon, 1)}:before
61
+ content: nth($icon, 2)
62
+
63
+ @each $icon in $icon-listE
64
+ .icon-#{nth($icon, 1)}:before
65
+ content: nth($icon, 2)
66
+
67
+ @each $icon in $icon-listF
68
+ .icon-#{nth($icon, 1)}:before
69
+ content: nth($icon, 2)
70
+
71
+ .icon-gear:before
72
+ content: nth($icon-listG, 2)
73
+ //@each $icon in $icon-listG
74
+ // .icon-#{nth($icon, 1)}:before
75
+ // content: nth($icon, 2)
76
+
77
+ @each $icon in $icon-listH
78
+ .icon-#{nth($icon, 1)}:before
79
+ content: nth($icon, 2)
80
+
81
+ @each $icon in $icon-listI
82
+ .icon-#{nth($icon, 1)}:before
83
+ content: nth($icon, 2)
84
+
85
+ //@each $icon in $icon-listJ
86
+ // .icon-#{nth($icon, 1)}:before
87
+ // content: nth($icon, 2)
88
+
89
+ //@each $icon in $icon-listK
90
+ // .icon-#{nth($icon, 1)}:before
91
+ // content: nth($icon, 2)
92
+
93
+ @each $icon in $icon-listL
94
+ .icon-#{nth($icon, 1)}:before
95
+ content: nth($icon, 2)
96
+
97
+ @each $icon in $icon-listM
98
+ .icon-#{nth($icon, 1)}:before
99
+ content: nth($icon, 2)
100
+
101
+ @each $icon in $icon-listN
102
+ .icon-#{nth($icon, 1)}:before
103
+ content: nth($icon, 2)
104
+
105
+ .icon-outbox:before
106
+ content: nth($icon-listO, 2)
107
+ //@each $icon in $icon-listO
108
+ // .icon-#{nth($icon, 1)}:before
109
+ // content: nth($icon, 2)
110
+
111
+ @each $icon in $icon-listP
112
+ .icon-#{nth($icon, 1)}:before
113
+ content: nth($icon, 2)
114
+
115
+ .icon-quote:before
116
+ content: nth($icon-listQ, 2)
117
+ //@each $icon in $icon-listQ
118
+ // .icon-#{nth($icon, 1)}:before
119
+ // content: nth($icon, 2)
120
+
121
+ @each $icon in $icon-listR
122
+ .icon-#{nth($icon, 1)}:before
123
+ content: nth($icon, 2)
124
+
125
+ @each $icon in $icon-listS
126
+ .icon-#{nth($icon, 1)}:before
127
+ content: nth($icon, 2)
128
+
129
+ @each $icon in $icon-listT
130
+ .icon-#{nth($icon, 1)}:before
131
+ content: nth($icon, 2)
132
+
133
+ @each $icon in $icon-listU
134
+ .icon-#{nth($icon, 1)}:before
135
+ content: nth($icon, 2)
136
+
137
+ .icon-volume:before
138
+ content: nth($icon-listV, 2)
139
+ //@each $icon in $icon-listV
140
+ // .icon-#{nth($icon, 1)}:before
141
+ // content: nth($icon, 2)
142
+
143
+ @each $icon in $icon-listW
144
+ .icon-#{nth($icon, 1)}:before
145
+ content: nth($icon, 2)
146
+
147
+ //@each $icon in $icon-listX
148
+ // .icon-#{nth($icon, 1)}:before
149
+ // content: nth($icon, 2)
150
+
151
+ //@each $icon in $icon-listY
152
+ // .icon-#{nth($icon, 1)}:before
153
+ // content: nth($icon, 2)
154
+
155
+ //@each $icon in $icon-listZ
156
+ // .icon-#{nth($icon, 1)}:before
157
+ // content: nth($icon, 2)
158
+
159
+
160
+ .icon-anthracite:before
161
+ color: $anthracite
162
+
163
+ .icon-black:before
164
+ color: $black
165
+
166
+ .icon-blue:before
167
+ color: $blue
168
+
169
+ .icon-green:before
170
+ color: $green
171
+
172
+ .icon-grey:before
173
+ color: $grey
174
+
175
+ .icon-orange:before
176
+ color: $orange
177
+
178
+ .icon-red:before
179
+ color: $red
180
+
181
+ .icon-silver:before
182
+ color: $silver
183
+
184
+ .icon-white:before
185
+ color: $white
186
+
187
+
188
+ =button-icons
189
+ .button.icon:before, .button > .icon:before, .button-icon.icon:before, .button-icon > .icon:before
190
+ font-size: 2.3em
191
+ margin-top: -0.65em
192
+
193
+ .button > .button-icon
194
+ +background-clip(padding-box)
195
+ +border-radius(4px 0 0 4px)
196
+ +box-shadow(rgba(255, 255, 255, 0.3) 0 1px 0 0 inset, rgba(0, 0, 0, 0.25) 0 1px 1px 0)
197
+ border-style: solid
198
+ border-width: 1px
199
+ font-weight: bold
200
+ height: inherit
201
+ +inline-block
202
+ margin: -1px 9px -1px -13px
203
+ line-height: inherit
204
+ padding: 0 13px
205
+ position: relative
206
+ text-align: left
207
+ +text-shadow(0 -1px 0 rgba(0, 0, 0, 0.6))
208
+ vertical-align: baseline
209
+
210
+ .button > .button-icon.right-side
211
+ +border-radius(0 4px 4px 0)
212
+ margin: -1px -13px -1px 9px
213
+
214
+
@@ -0,0 +1,3 @@
1
+ =responsive-elements
2
+ img
3
+ width: 100%
@@ -0,0 +1,92 @@
1
+ @import "compass/css3/transition"
2
+ // Font-face ----------------------------------------------------------------
3
+ @font-face
4
+ // This declaration targets Internet Explorer
5
+ font-family: 'HelveticaNeueLight'
6
+ src: font-url('helveticaneuelight-webfont.eot')
7
+
8
+ @font-face
9
+ // This declaration targets everything else
10
+ font-family: 'HelveticaNeueLight'
11
+ src: url(//:) format("no404"), font-url('helveticaneuelight-webfont.woff') format("woff"), font-url('helveticaneuelight-webfont.ttf') format("truetype"), font-url('helveticaneuelight-webfont.svg#webfontMkGLOlV8') format("svg")
12
+
13
+ @font-face
14
+ // This declaration targets Internet Explorer
15
+ font-family: 'HelveticaNeueBold'
16
+ src: font-url('helveticaneuebold-webfont.eot')
17
+
18
+ @font-face
19
+ // This declaration targets everything else
20
+ font-family: 'HelveticaNeueBold'
21
+ src: url(//:) format("no404"), font-url('helveticaneuebold-webfont.woff') format("woff"), font-url('helveticaneuebold-webfont.ttf') format("truetype"), font-url('helveticaneuebold-webfont.svg#webfont2jvunfBH') format("svg")
22
+
23
+ @font-face
24
+ // This declaration targets Internet Explorer
25
+ font-family: 'HelveticaNeueRegular'
26
+ src: font-url('helveticaneue-webfont.eot')
27
+
28
+ @font-face
29
+ // This declaration targets everything else
30
+ font-family: 'HelveticaNeueRegular'
31
+ src: url(//:) format("no404"), font-url('helveticaneue-webfont.woff') format("woff"), font-url('helveticaneue-webfont.ttf') format("truetype"), font-url('helveticaneue-webfont.svg#webfont7Svp2ZPN') format("svg")
32
+
33
+ @font-face
34
+ // This declaration targets Internet Explorer
35
+ font-family: 'HelveticaNeueMedium'
36
+ src: font-url('helveticaneuemedium-webfont.eot')
37
+
38
+ @font-face
39
+ // This declaration targets everything else
40
+ font-family: 'HelveticaNeueMedium'
41
+ src: url(//:) format("no404"), font-url('helveticaneuemedium-webfont.woff') format("woff"), font-url('helveticaneuemedium-webfont.ttf') format("truetype"), font-url('helveticaneuemedium-webfont.svg#webfont55wfdJMM') format("svg")
42
+
43
+ =typography
44
+ background: #f9faf9
45
+ color: #333333
46
+ font-family: 'HelveticaNeueRegular', 'Helvetica Neue', Helvetica, Arial, Sans-Serif
47
+
48
+ a
49
+ color: #5d9610
50
+ font-family: 'HelveticaNeueBold', 'Helvetica Neue', Helvetica, Arial, Sans-Serif
51
+ text-decoration: none
52
+ +transition-property(color)
53
+ +transition-duration(800ms)
54
+
55
+ &:hover
56
+ color: #a5c876
57
+ +transition-property(color)
58
+ +transition-duration(300ms)
59
+
60
+ h1, h2, h3, h4, h5, h6
61
+ font-family: 'HelveticaNeueBold', 'Helvetica Neue', Helvetica, Arial, Sans-serif
62
+ font-weight: normal !important
63
+ letter-spacing: -0.05em
64
+ +trailer(1)
65
+ word-spacing: -0.03em
66
+
67
+ h1
68
+ +adjust-font-size-to(55px)
69
+ font-family: 'HelveticaNeueLight', 'Helvetica Neue', Helvetica, Arial, Sans-serif
70
+ +trailer(0.3)
71
+
72
+ h2
73
+ +adjust-font-size-to(34px)
74
+ +adjust-leading-to(0.5)
75
+ +trailer(0.5)
76
+
77
+ h3, h4
78
+ +adjust-font-size-to(21px)
79
+ +trailer(0.3)
80
+
81
+ p
82
+ +trailer(1)
83
+
84
+ strong
85
+ font-weight: bold
86
+
87
+ ul
88
+ font-family: 'HelveticaNeueBold', 'Helvetica Neue', Helvetica, Arial, Sans-serif
89
+
90
+ .monospace
91
+ font-family: Courier, 'Courier New', monospace
92
+
@@ -0,0 +1,11 @@
1
+ description "The brandy framework"
2
+
3
+ help %Q{
4
+ Please see the brandy website for documentation on brandy works and all of its avalible helpers.
5
+
6
+ http://something.com
7
+ }
8
+
9
+ welcome_message %Q{
10
+ You are going to want to vist the brandy website http://something.com for full documentation and resources on this theme and all of its helpers.
11
+ }
@@ -0,0 +1,2 @@
1
+ // This is where you put the contents of the main stylesheet for the user's project.
2
+ // It should import your sass stylesheets and demonstrate how to use them.
@@ -0,0 +1,628 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>
8
+ <script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script>
9
+ <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" title="" charset="utf-8">
10
+ <link rel="stylesheet" href="stylesheet.css" type="text/css" title="no title" charset="utf-8" />
11
+
12
+ <style type="text/css">
13
+ body{
14
+ font-family: 'HelveticaNeueBold';
15
+ }
16
+ </style>
17
+
18
+ <title>Helvetica Neue Bold Specimen</title>
19
+
20
+
21
+ <script type="text/javascript" charset="utf-8">
22
+ $(document).ready(function() {
23
+ $('#container').easyTabs({defaultContent:1});
24
+ });
25
+ </script>
26
+ </head>
27
+
28
+ <body>
29
+ <div id="container">
30
+ <div id="header">
31
+ Helvetica Neue Bold </div>
32
+ <ul class="tabs">
33
+ <li><a href="#specimen">Specimen</a></li>
34
+ <li><a href="#layout">Sample Layout</a></li>
35
+ <li><a href="#rendering">Windows Rendering</a></li> <li><a href="#glyphs">Glyphs &amp; Languages</a></li>
36
+ <li><a href="#installing">Installing Webfonts</a></li>
37
+
38
+ </ul>
39
+
40
+ <div id="main_content">
41
+
42
+
43
+ <div id="specimen">
44
+
45
+ <div class="section">
46
+ <div class="grid12 firstcol">
47
+ <div class="huge">AaBb</div>
48
+ </div>
49
+ </div>
50
+
51
+ <div class="section">
52
+ <div class="glyph_range">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>
53
+ </div>
54
+ <div class="section">
55
+ <div class="grid12 firstcol">
56
+ <table class="sample_table">
57
+ <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
58
+ <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
59
+ <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
60
+ <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
61
+ <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
62
+ <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
63
+ <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
64
+ <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
65
+ <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
66
+ <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
67
+ <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
68
+ <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
69
+ <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
70
+ <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
71
+ <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>
72
+ </table>
73
+
74
+ </div>
75
+
76
+ </div>
77
+
78
+
79
+
80
+ <div class="section" id="bodycomparison">
81
+
82
+
83
+ <div id="xheight">
84
+ <div class="fontbody">&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;&#xE000;body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div>
85
+ <div class="fontbody">
86
+ body<span>Helvetica Neue Bold</span>
87
+ </div>
88
+ <div class="arialbody">
89
+ body<span>Arial</span>
90
+ </div>
91
+ <div class="verdanabody">
92
+ body<span>Verdana</span>
93
+ </div>
94
+ <div class="georgiabody">
95
+ body<span>Georgia</span>
96
+ </div>
97
+
98
+
99
+
100
+ </div>
101
+
102
+
103
+ <div class="section psample psample_row1" id="">
104
+
105
+ <div class="grid2 firstcol">
106
+ <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
107
+
108
+ </div>
109
+ <div class="grid3">
110
+ <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
111
+
112
+ </div>
113
+ <div class="grid3">
114
+ <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
115
+
116
+ </div>
117
+ <div class="grid4">
118
+ <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
119
+
120
+ </div>
121
+ <div class="white_blend"></div>
122
+
123
+ </div>
124
+ <div class="section psample psample_row2" id="">
125
+ <div class="grid3 firstcol">
126
+ <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
127
+
128
+ </div>
129
+ <div class="grid4">
130
+ <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
131
+
132
+ </div>
133
+ <div class="grid5">
134
+ <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
135
+
136
+ </div>
137
+
138
+ <div class="white_blend"></div>
139
+
140
+ </div>
141
+
142
+ <div class="section psample psample_row3" id="">
143
+ <div class="grid5 firstcol">
144
+ <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
145
+ </div>
146
+ <div class="grid7">
147
+ <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
148
+ </div>
149
+
150
+ <div class="white_blend"></div>
151
+
152
+ </div>
153
+
154
+ <div class="section psample psample_row4" id="">
155
+ <div class="grid12 firstcol">
156
+ <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
157
+ </div>
158
+ <div class="white_blend"></div>
159
+
160
+ </div>
161
+
162
+
163
+
164
+ <div class="section psample psample_row1 fullreverse">
165
+ <div class="grid2 firstcol">
166
+ <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
167
+
168
+ </div>
169
+ <div class="grid3">
170
+ <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
171
+
172
+ </div>
173
+ <div class="grid3">
174
+ <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
175
+
176
+ </div>
177
+ <div class="grid4">
178
+ <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
179
+
180
+ </div>
181
+ <div class="black_blend"></div>
182
+
183
+ </div>
184
+
185
+ <div class="section psample psample_row2 fullreverse">
186
+ <div class="grid3 firstcol">
187
+ <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
188
+
189
+ </div>
190
+ <div class="grid4">
191
+ <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
192
+
193
+ </div>
194
+ <div class="grid5">
195
+ <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
196
+
197
+ </div>
198
+ <div class="black_blend"></div>
199
+
200
+ </div>
201
+
202
+ <div class="section psample fullreverse psample_row3" id="">
203
+ <div class="grid5 firstcol">
204
+ <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
205
+ </div>
206
+ <div class="grid7">
207
+ <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
208
+ </div>
209
+
210
+ <div class="black_blend"></div>
211
+
212
+ </div>
213
+
214
+ <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;">
215
+ <div class="grid12 firstcol">
216
+ <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>
217
+ </div>
218
+ <div class="black_blend"></div>
219
+
220
+ </div>
221
+
222
+
223
+
224
+
225
+ </div>
226
+
227
+ <div id="layout">
228
+
229
+ <div class="section">
230
+
231
+ <div class="grid12 firstcol">
232
+ <h1>Lorem Ipsum Dolor</h1>
233
+ <h2>Etiam porta sem malesuada magna mollis euismod</h2>
234
+
235
+ <p class="byline">By <a href="#link">Aenean Lacinia</a></p>
236
+ </div>
237
+ </div>
238
+ <div class="section">
239
+ <div class="grid8 firstcol">
240
+ <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
241
+
242
+
243
+ <h3>Pellentesque ornare sem</h3>
244
+
245
+ <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>
246
+
247
+ <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>
248
+
249
+ <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>
250
+
251
+ <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>
252
+
253
+ <h3>Cras mattis consectetur</h3>
254
+
255
+ <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>
256
+
257
+ <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>
258
+ </div>
259
+
260
+ <div class="grid4 sidebar">
261
+
262
+ <div class="box reverse">
263
+ <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>
264
+ </div>
265
+
266
+ <p class="caption">Maecenas sed diam eget risus varius.</p>
267
+
268
+ <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
269
+
270
+
271
+
272
+ <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>
273
+
274
+ <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>
275
+
276
+ </div>
277
+ </div>
278
+
279
+ </div>
280
+
281
+
282
+ <div id="rendering">
283
+ <div class="section">
284
+ <div class="grid12 firstcol">
285
+ <h1>ClearType (GDI)</h1>
286
+
287
+ <p><img src="specimen_files/helveticaneuebold-cleartype.png" /></p>
288
+ </div>
289
+ </div>
290
+ </div>
291
+
292
+
293
+
294
+
295
+ <div id="glyphs">
296
+ <div class="section">
297
+ <div class="grid12 firstcol">
298
+
299
+ <h1>Language Support</h1>
300
+ <p>The subset of Helvetica Neue Bold in this kit supports the following languages:<br />
301
+
302
+ Albanian, Danish, Dutch, English, Faroese, French, German, Icelandic, Italian, Malagasy, Norwegian, Spanish, Swedish </p>
303
+ <h1>Glyph Chart</h1>
304
+ <p>The subset of Helvetica Neue Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>
305
+ <div id="glyph_chart">
306
+
307
+ <div><p>&amp;#32;</p>&#32;</div>
308
+ <div><p>&amp;#33;</p>&#33;</div>
309
+ <div><p>&amp;#34;</p>&#34;</div>
310
+ <div><p>&amp;#35;</p>&#35;</div>
311
+ <div><p>&amp;#36;</p>&#36;</div>
312
+ <div><p>&amp;#37;</p>&#37;</div>
313
+ <div><p>&amp;#38;</p>&#38;</div>
314
+ <div><p>&amp;#39;</p>&#39;</div>
315
+ <div><p>&amp;#40;</p>&#40;</div>
316
+ <div><p>&amp;#41;</p>&#41;</div>
317
+ <div><p>&amp;#42;</p>&#42;</div>
318
+ <div><p>&amp;#43;</p>&#43;</div>
319
+ <div><p>&amp;#44;</p>&#44;</div>
320
+ <div><p>&amp;#45;</p>&#45;</div>
321
+ <div><p>&amp;#46;</p>&#46;</div>
322
+ <div><p>&amp;#47;</p>&#47;</div>
323
+ <div><p>&amp;#48;</p>&#48;</div>
324
+ <div><p>&amp;#49;</p>&#49;</div>
325
+ <div><p>&amp;#50;</p>&#50;</div>
326
+ <div><p>&amp;#51;</p>&#51;</div>
327
+ <div><p>&amp;#52;</p>&#52;</div>
328
+ <div><p>&amp;#53;</p>&#53;</div>
329
+ <div><p>&amp;#54;</p>&#54;</div>
330
+ <div><p>&amp;#55;</p>&#55;</div>
331
+ <div><p>&amp;#56;</p>&#56;</div>
332
+ <div><p>&amp;#57;</p>&#57;</div>
333
+ <div><p>&amp;#58;</p>&#58;</div>
334
+ <div><p>&amp;#59;</p>&#59;</div>
335
+ <div><p>&amp;#60;</p>&#60;</div>
336
+ <div><p>&amp;#61;</p>&#61;</div>
337
+ <div><p>&amp;#62;</p>&#62;</div>
338
+ <div><p>&amp;#63;</p>&#63;</div>
339
+ <div><p>&amp;#64;</p>&#64;</div>
340
+ <div><p>&amp;#65;</p>&#65;</div>
341
+ <div><p>&amp;#66;</p>&#66;</div>
342
+ <div><p>&amp;#67;</p>&#67;</div>
343
+ <div><p>&amp;#68;</p>&#68;</div>
344
+ <div><p>&amp;#69;</p>&#69;</div>
345
+ <div><p>&amp;#70;</p>&#70;</div>
346
+ <div><p>&amp;#71;</p>&#71;</div>
347
+ <div><p>&amp;#72;</p>&#72;</div>
348
+ <div><p>&amp;#73;</p>&#73;</div>
349
+ <div><p>&amp;#74;</p>&#74;</div>
350
+ <div><p>&amp;#75;</p>&#75;</div>
351
+ <div><p>&amp;#76;</p>&#76;</div>
352
+ <div><p>&amp;#77;</p>&#77;</div>
353
+ <div><p>&amp;#78;</p>&#78;</div>
354
+ <div><p>&amp;#79;</p>&#79;</div>
355
+ <div><p>&amp;#80;</p>&#80;</div>
356
+ <div><p>&amp;#81;</p>&#81;</div>
357
+ <div><p>&amp;#82;</p>&#82;</div>
358
+ <div><p>&amp;#83;</p>&#83;</div>
359
+ <div><p>&amp;#84;</p>&#84;</div>
360
+ <div><p>&amp;#85;</p>&#85;</div>
361
+ <div><p>&amp;#86;</p>&#86;</div>
362
+ <div><p>&amp;#87;</p>&#87;</div>
363
+ <div><p>&amp;#88;</p>&#88;</div>
364
+ <div><p>&amp;#89;</p>&#89;</div>
365
+ <div><p>&amp;#90;</p>&#90;</div>
366
+ <div><p>&amp;#91;</p>&#91;</div>
367
+ <div><p>&amp;#92;</p>&#92;</div>
368
+ <div><p>&amp;#93;</p>&#93;</div>
369
+ <div><p>&amp;#94;</p>&#94;</div>
370
+ <div><p>&amp;#95;</p>&#95;</div>
371
+ <div><p>&amp;#96;</p>&#96;</div>
372
+ <div><p>&amp;#97;</p>&#97;</div>
373
+ <div><p>&amp;#98;</p>&#98;</div>
374
+ <div><p>&amp;#99;</p>&#99;</div>
375
+ <div><p>&amp;#100;</p>&#100;</div>
376
+ <div><p>&amp;#101;</p>&#101;</div>
377
+ <div><p>&amp;#102;</p>&#102;</div>
378
+ <div><p>&amp;#103;</p>&#103;</div>
379
+ <div><p>&amp;#104;</p>&#104;</div>
380
+ <div><p>&amp;#105;</p>&#105;</div>
381
+ <div><p>&amp;#106;</p>&#106;</div>
382
+ <div><p>&amp;#107;</p>&#107;</div>
383
+ <div><p>&amp;#108;</p>&#108;</div>
384
+ <div><p>&amp;#109;</p>&#109;</div>
385
+ <div><p>&amp;#110;</p>&#110;</div>
386
+ <div><p>&amp;#111;</p>&#111;</div>
387
+ <div><p>&amp;#112;</p>&#112;</div>
388
+ <div><p>&amp;#113;</p>&#113;</div>
389
+ <div><p>&amp;#114;</p>&#114;</div>
390
+ <div><p>&amp;#115;</p>&#115;</div>
391
+ <div><p>&amp;#116;</p>&#116;</div>
392
+ <div><p>&amp;#117;</p>&#117;</div>
393
+ <div><p>&amp;#118;</p>&#118;</div>
394
+ <div><p>&amp;#119;</p>&#119;</div>
395
+ <div><p>&amp;#120;</p>&#120;</div>
396
+ <div><p>&amp;#121;</p>&#121;</div>
397
+ <div><p>&amp;#122;</p>&#122;</div>
398
+ <div><p>&amp;#123;</p>&#123;</div>
399
+ <div><p>&amp;#124;</p>&#124;</div>
400
+ <div><p>&amp;#125;</p>&#125;</div>
401
+ <div><p>&amp;#126;</p>&#126;</div>
402
+ <div><p>&amp;#160;</p>&#160;</div>
403
+ <div><p>&amp;#161;</p>&#161;</div>
404
+ <div><p>&amp;#162;</p>&#162;</div>
405
+ <div><p>&amp;#163;</p>&#163;</div>
406
+ <div><p>&amp;#164;</p>&#164;</div>
407
+ <div><p>&amp;#165;</p>&#165;</div>
408
+ <div><p>&amp;#166;</p>&#166;</div>
409
+ <div><p>&amp;#167;</p>&#167;</div>
410
+ <div><p>&amp;#168;</p>&#168;</div>
411
+ <div><p>&amp;#169;</p>&#169;</div>
412
+ <div><p>&amp;#170;</p>&#170;</div>
413
+ <div><p>&amp;#171;</p>&#171;</div>
414
+ <div><p>&amp;#172;</p>&#172;</div>
415
+ <div><p>&amp;#173;</p>&#173;</div>
416
+ <div><p>&amp;#174;</p>&#174;</div>
417
+ <div><p>&amp;#175;</p>&#175;</div>
418
+ <div><p>&amp;#176;</p>&#176;</div>
419
+ <div><p>&amp;#177;</p>&#177;</div>
420
+ <div><p>&amp;#178;</p>&#178;</div>
421
+ <div><p>&amp;#179;</p>&#179;</div>
422
+ <div><p>&amp;#180;</p>&#180;</div>
423
+ <div><p>&amp;#181;</p>&#181;</div>
424
+ <div><p>&amp;#182;</p>&#182;</div>
425
+ <div><p>&amp;#183;</p>&#183;</div>
426
+ <div><p>&amp;#184;</p>&#184;</div>
427
+ <div><p>&amp;#185;</p>&#185;</div>
428
+ <div><p>&amp;#186;</p>&#186;</div>
429
+ <div><p>&amp;#187;</p>&#187;</div>
430
+ <div><p>&amp;#188;</p>&#188;</div>
431
+ <div><p>&amp;#189;</p>&#189;</div>
432
+ <div><p>&amp;#190;</p>&#190;</div>
433
+ <div><p>&amp;#191;</p>&#191;</div>
434
+ <div><p>&amp;#192;</p>&#192;</div>
435
+ <div><p>&amp;#193;</p>&#193;</div>
436
+ <div><p>&amp;#194;</p>&#194;</div>
437
+ <div><p>&amp;#195;</p>&#195;</div>
438
+ <div><p>&amp;#196;</p>&#196;</div>
439
+ <div><p>&amp;#197;</p>&#197;</div>
440
+ <div><p>&amp;#198;</p>&#198;</div>
441
+ <div><p>&amp;#199;</p>&#199;</div>
442
+ <div><p>&amp;#200;</p>&#200;</div>
443
+ <div><p>&amp;#201;</p>&#201;</div>
444
+ <div><p>&amp;#202;</p>&#202;</div>
445
+ <div><p>&amp;#203;</p>&#203;</div>
446
+ <div><p>&amp;#204;</p>&#204;</div>
447
+ <div><p>&amp;#205;</p>&#205;</div>
448
+ <div><p>&amp;#206;</p>&#206;</div>
449
+ <div><p>&amp;#207;</p>&#207;</div>
450
+ <div><p>&amp;#208;</p>&#208;</div>
451
+ <div><p>&amp;#209;</p>&#209;</div>
452
+ <div><p>&amp;#210;</p>&#210;</div>
453
+ <div><p>&amp;#211;</p>&#211;</div>
454
+ <div><p>&amp;#212;</p>&#212;</div>
455
+ <div><p>&amp;#213;</p>&#213;</div>
456
+ <div><p>&amp;#214;</p>&#214;</div>
457
+ <div><p>&amp;#215;</p>&#215;</div>
458
+ <div><p>&amp;#216;</p>&#216;</div>
459
+ <div><p>&amp;#217;</p>&#217;</div>
460
+ <div><p>&amp;#218;</p>&#218;</div>
461
+ <div><p>&amp;#219;</p>&#219;</div>
462
+ <div><p>&amp;#220;</p>&#220;</div>
463
+ <div><p>&amp;#221;</p>&#221;</div>
464
+ <div><p>&amp;#222;</p>&#222;</div>
465
+ <div><p>&amp;#223;</p>&#223;</div>
466
+ <div><p>&amp;#224;</p>&#224;</div>
467
+ <div><p>&amp;#225;</p>&#225;</div>
468
+ <div><p>&amp;#226;</p>&#226;</div>
469
+ <div><p>&amp;#227;</p>&#227;</div>
470
+ <div><p>&amp;#228;</p>&#228;</div>
471
+ <div><p>&amp;#229;</p>&#229;</div>
472
+ <div><p>&amp;#230;</p>&#230;</div>
473
+ <div><p>&amp;#231;</p>&#231;</div>
474
+ <div><p>&amp;#232;</p>&#232;</div>
475
+ <div><p>&amp;#233;</p>&#233;</div>
476
+ <div><p>&amp;#234;</p>&#234;</div>
477
+ <div><p>&amp;#235;</p>&#235;</div>
478
+ <div><p>&amp;#236;</p>&#236;</div>
479
+ <div><p>&amp;#237;</p>&#237;</div>
480
+ <div><p>&amp;#238;</p>&#238;</div>
481
+ <div><p>&amp;#239;</p>&#239;</div>
482
+ <div><p>&amp;#240;</p>&#240;</div>
483
+ <div><p>&amp;#241;</p>&#241;</div>
484
+ <div><p>&amp;#242;</p>&#242;</div>
485
+ <div><p>&amp;#243;</p>&#243;</div>
486
+ <div><p>&amp;#244;</p>&#244;</div>
487
+ <div><p>&amp;#245;</p>&#245;</div>
488
+ <div><p>&amp;#246;</p>&#246;</div>
489
+ <div><p>&amp;#247;</p>&#247;</div>
490
+ <div><p>&amp;#248;</p>&#248;</div>
491
+ <div><p>&amp;#249;</p>&#249;</div>
492
+ <div><p>&amp;#250;</p>&#250;</div>
493
+ <div><p>&amp;#251;</p>&#251;</div>
494
+ <div><p>&amp;#252;</p>&#252;</div>
495
+ <div><p>&amp;#253;</p>&#253;</div>
496
+ <div><p>&amp;#254;</p>&#254;</div>
497
+ <div><p>&amp;#255;</p>&#255;</div>
498
+ <div><p>&amp;#338;</p>&#338;</div>
499
+ <div><p>&amp;#339;</p>&#339;</div>
500
+ <div><p>&amp;#376;</p>&#376;</div>
501
+ <div><p>&amp;#710;</p>&#710;</div>
502
+ <div><p>&amp;#732;</p>&#732;</div>
503
+ <div><p>&amp;#8192;</p>&#8192;</div>
504
+ <div><p>&amp;#8193;</p>&#8193;</div>
505
+ <div><p>&amp;#8194;</p>&#8194;</div>
506
+ <div><p>&amp;#8195;</p>&#8195;</div>
507
+ <div><p>&amp;#8196;</p>&#8196;</div>
508
+ <div><p>&amp;#8197;</p>&#8197;</div>
509
+ <div><p>&amp;#8198;</p>&#8198;</div>
510
+ <div><p>&amp;#8199;</p>&#8199;</div>
511
+ <div><p>&amp;#8200;</p>&#8200;</div>
512
+ <div><p>&amp;#8201;</p>&#8201;</div>
513
+ <div><p>&amp;#8202;</p>&#8202;</div>
514
+ <div><p>&amp;#8208;</p>&#8208;</div>
515
+ <div><p>&amp;#8209;</p>&#8209;</div>
516
+ <div><p>&amp;#8210;</p>&#8210;</div>
517
+ <div><p>&amp;#8211;</p>&#8211;</div>
518
+ <div><p>&amp;#8212;</p>&#8212;</div>
519
+ <div><p>&amp;#8216;</p>&#8216;</div>
520
+ <div><p>&amp;#8217;</p>&#8217;</div>
521
+ <div><p>&amp;#8218;</p>&#8218;</div>
522
+ <div><p>&amp;#8220;</p>&#8220;</div>
523
+ <div><p>&amp;#8221;</p>&#8221;</div>
524
+ <div><p>&amp;#8222;</p>&#8222;</div>
525
+ <div><p>&amp;#8226;</p>&#8226;</div>
526
+ <div><p>&amp;#8230;</p>&#8230;</div>
527
+ <div><p>&amp;#8239;</p>&#8239;</div>
528
+ <div><p>&amp;#8249;</p>&#8249;</div>
529
+ <div><p>&amp;#8250;</p>&#8250;</div>
530
+ <div><p>&amp;#8287;</p>&#8287;</div>
531
+ <div><p>&amp;#8364;</p>&#8364;</div>
532
+ <div><p>&amp;#8482;</p>&#8482;</div>
533
+ <div><p>&amp;#57344;</p>&#57344;</div>
534
+ <div><p>&amp;#64257;</p>&#64257;</div>
535
+ <div><p>&amp;#64258;</p>&#64258;</div>
536
+ <div><p>&amp;#64259;</p>&#64259;</div>
537
+ <div><p>&amp;#64260;</p>&#64260;</div>
538
+ </div>
539
+ </div>
540
+
541
+
542
+ </div>
543
+ </div>
544
+
545
+
546
+ <div id="specs">
547
+
548
+ </div>
549
+
550
+ <div id="installing">
551
+ <div class="section">
552
+ <div class="grid7 firstcol">
553
+ <h1>Installing Webfonts</h1>
554
+
555
+ <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>
556
+
557
+ <h2>1. Upload your webfonts</h2>
558
+ <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>
559
+
560
+ <h2>2. Include the webfont stylesheet</h2>
561
+ <p>A special CSS @font-face declaration developed by <a href="http://readableweb.com/mo-bulletproofer-font-face-css-syntax/">Richard Fink</a> helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. The code for it is as follows:</p>
562
+
563
+
564
+ <code>
565
+ @font-face{
566
+ /* for Internet Explorer */
567
+ font-family: 'WebFont';
568
+ src: url('WebFont.eot');
569
+ }
570
+
571
+ @font-face {
572
+ /* for everything else */
573
+ font-family: 'WebFont';
574
+ src: url(//:) format('no404'),
575
+ url('WebFont.woff') format('woff'),
576
+ url('WebFont.ttf') format('truetype'),
577
+ url('WebFont.svg#webfont') format('svg');
578
+ }
579
+ </code>
580
+
581
+ <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>
582
+ <code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>
583
+
584
+ <h2>3. Modify your own stylesheet</h2>
585
+ <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p>
586
+ <code>p { font-family: 'WebFont', Arial, sans-serif; }</code>
587
+
588
+ <h2>4. Test</h2>
589
+ <p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>
590
+ </div>
591
+
592
+ <div class="grid5 sidebar">
593
+ <div class="box">
594
+ <h2>Troubleshooting<br />Font-Face Problems</h2>
595
+ <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>
596
+
597
+ <h3>Fonts not showing in any browser</h3>
598
+
599
+ <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>
600
+
601
+ <h3>Fonts not loading in iPhone or iPad</h3>
602
+
603
+ <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p>
604
+
605
+ <h3>Fonts not loading in Firefox</h3>
606
+
607
+ <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>
608
+
609
+ <h3>Fonts not loading in IE</h3>
610
+
611
+ <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>
612
+
613
+ <h3>Fonts not loading in IE9</h3>
614
+
615
+ <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>
616
+ </div>
617
+ </div>
618
+ </div>
619
+
620
+ </div>
621
+
622
+ </div>
623
+ <div id="footer">
624
+ <p>&copy;2010 Font Squirrel. All rights reserved.</p>
625
+ </div>
626
+ </div>
627
+ </body>
628
+ </html>