forked from choffmeister/roboto-fontface-bower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
237 lines (197 loc) · 9.46 KB
/
test.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
<!Doctype html>
<html>
<head>
<title>Test Font Face</title>
<link rel="stylesheet" href="css/roboto/roboto-fontface.css">
<link rel="stylesheet" href="css/roboto-condensed/roboto-condensed-fontface.css">
<style>
body {
background: #F2F2F2;
}
.test-header {
text-align: center;
font-family: 'Roboto-Black';
font-size: 2em;
padding: 0;
margin: 0;
}
.test-header h1 {
padding: 0;
margin: 0;
}
section {
padding: 2% 10%;
margin: 0 auto;
}
/*Roboto*/
.roboto {
font-family: 'Roboto';
}
.roboto-italic {
font-family: 'Roboto-RegularItalic';
}
.roboto-light {
font-family: 'Roboto-Light';
}
.roboto-light-italic {
font-family: 'Roboto-LightItalic';
}
.roboto-bold {
font-family: 'Roboto-Bold';
}
.roboto-bold-italic {
font-family: 'Roboto-BoldItalic';
}
.roboto-medium {
font-family: 'Roboto-Medium';
}
.roboto-medium-italic {
font-family: 'Roboto-MediumItalic';
}
.roboto-thin {
font-family: 'Roboto-Thin';
}
.roboto-thin-italic {
font-family: 'Roboto-ThinItalic';
}
/*Roboto Condensed*/
.roboto-condensed {
font-family: 'Roboto-Condensed';
}
.roboto-condensed-italic {
font-family: 'Roboto-Condensed-RegularItalic';
}
.roboto-condensed-light {
font-family: 'Roboto-Condensed-Light';
}
.roboto-condensed-light-italic {
font-family: 'Roboto-Condensed-LightItalic';
}
.roboto-condensed-bold {
font-family: 'Roboto-Condensed-Bold';
}
.roboto-condensed-bold-italic {
font-family: 'Roboto-Condensed-BoldItalic';
}
</style>
</head>
<body>
<header class="test-header">
<h1>Roboto-Fontface-Bower</h1>
</header>
<!-- Roboto -->
<section class="roboto">
<header>
<h1>I am Roboto</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-italic">
<header>
<h1>I am Roboto Italic</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-light">
<header>
<h1>I am Roboto Light</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-light-italic">
<header>
<h1>I am Roboto Light Italic</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-medium">
<header>
<h1>I am Roboto Medium</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-medium-italic">
<header>
<h1>I am Roboto Medium Italic</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-bold">
<header>
<h1>I am Roboto Bold</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-bold-italic">
<header>
<h1>I am Roboto Bold Italic</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-thin">
<header>
<h1>I am Roboto Thin</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-thin-italic">
<header>
<h1>I am Roboto Thin Italic</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<!-- Roboto Condensed -->
<section class="roboto-condensed">
<header>
<h1>I am RobotoCondensed</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-condensed-italic">
<header>
<h1>I am RobotoCondensed Italic</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-condensed-light">
<header>
<h1>I am RobotoCondensed Light</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-condensed-light-italic">
<header>
<h1>I am RobotoCondensed Light Italic</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-condensed-bold">
<header>
<h1>I am RobotoCondensed Bold</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
<section class="roboto-condensed-bold-italic">
<header>
<h1>I am RobotoCondensed Bold Italic</h1>
</header>
CSS on its own can be fun, but stylesheets are getting larger, more complex, and harder to maintain. This is where a preprocessor can help. Sass lets you use features that don't exist in CSS yet like variables, nesting, mixins, inheritance and other nifty
goodies that make writing CSS fun again.
</section>
</body>
</html>