-
Notifications
You must be signed in to change notification settings - Fork 49
/
typography.html
executable file
·490 lines (389 loc) · 20.6 KB
/
typography.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Clark | Typography</title>
<meta charset="utf-8">
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="">
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Karla:400,400i,700%7CLato:300,400,400i,700' rel='stylesheet'>
<!-- Css -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/font-icons.css" />
<link rel="stylesheet" href="css/sliders.css" />
<link rel="stylesheet" href="css/style.css" />
<!-- Favicons -->
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png">
</head>
<body>
<!-- Preloader -->
<div class="loader-mask">
<div class="loader">
"Loading..."
</div>
</div>
<main class="main-wrapper">
<!-- Navigation -->
<header class="nav nav--transparent">
<div class="nav__holder" id="sticky-nav">
<div class="container-fluid">
<div class="flex-parent">
<div class="nav__header flex-child clearfix">
<!-- Logo -->
<div class="logo-wrap">
<a href="index.html" class="logo__link">
<img class="logo logo--dark" src="img/logo_dark.png" alt="logo">
<img class="logo logo--light" src="img/logo_light.png" alt="logo">
</a>
</div>
<button type="button" class="nav__icon-toggle" id="nav__icon-toggle" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="nav__icon-toggle-bar"></span>
<span class="nav__icon-toggle-bar"></span>
<span class="nav__icon-toggle-bar"></span>
</button>
</div> <!-- end nav-header -->
<nav id="navbar-collapse" class="nav__wrap flex-child collapse navbar-collapse">
<ul class="nav__menu">
<li class="nav__dropdown flex-child active">
<a href="#">Home</a>
<i class="ui-arrow-down nav__dropdown-trigger"></i>
<ul class="nav__dropdown-menu">
<li><a href="index.html">Home Startup</a></li>
</ul>
</li>
<li class="nav__dropdown flex-child">
<a href="#">Portfolio</a>
<i class="ui-arrow-down nav__dropdown-trigger"></i>
<ul class="nav__dropdown-menu">
<li>
<a href="portfolio-classic.html">Classic</a>
</li>
<li>
<a href="portfolio-masonry.html">Masonry</a>
</li>
<li>
<a href="portfolio-single.html">Single Project</a>
</li>
</ul>
</li>
<li class="nav__dropdown flex-child">
<a href="#">Blog</a>
<i class="ui-arrow-down nav__dropdown-trigger"></i>
<ul class="nav__dropdown-menu">
<li><a href="blog-standard.html">Standard</a></li>
<li><a href="blog-single.html">Single Post</a></li>
</ul>
</li>
<li class="nav__dropdown flex-child">
<a href="#">Pages</a>
<i class="ui-arrow-down nav__dropdown-trigger"></i>
<ul class="nav__dropdown-menu">
<li><a href="services.html">Services</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="about-me.html">About Us 2</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</li>
<li class="nav__dropdown flex-child">
<a href="#">Features</a>
<i class="ui-arrow-down nav__dropdown-trigger"></i>
<ul class="nav__dropdown-menu">
<li><a href="typography.html">Typography</a></li>
<li><a href="shortcodes.html">Elements</a></li>
</ul>
</li> <!-- end elements -->
</ul> <!-- end menu -->
</nav> <!-- end nav-wrap -->
</div> <!-- end flex-parent -->
</div> <!-- end container -->
</div>
</header> <!-- end navigation -->
<div class="content-wrapper oh">
<!-- Page Title -->
<section class="page-title bg-img text-center" style="background-image: url(img/page_title/elements.jpg);">
<div class="container">
<div class="page-title__holder">
<div class="page-title__inner">
<h1 class="page-title__title">Typography</h1>
</div>
</div>
</div>
</section> <!-- end page title -->
<!-- Typography -->
<section class="section-wrap section-headings">
<div class="container">
<div class="row">
<div class="col-sm-6">
<h1>Heading h1</h1>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine. Our Theme is a very slick and clean e-commerce template.</p>
</div>
<div class="col-sm-6">
<h2>Heading h2</h2>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine. Our Theme is a very slick and clean e-commerce template.</p>
</div>
</div> <!-- end row -->
<div class="row">
<div class="col-sm-6">
<h3>Heading h3</h3>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine. Our Theme is a very slick and clean e-commerce template.</p>
</div>
<div class="col-sm-6">
<h4>Heading h4</h4>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine. Our Theme is a very slick and clean e-commerce template.</p>
</div>
</div> <!-- end row -->
<div class="row">
<div class="col-sm-6">
<h5>Heading h5</h5>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine. Our Theme is a very slick and clean e-commerce template.</p>
</div>
<div class="col-sm-6">
<h6>Heading h6</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine. Our Theme is a very slick and clean e-commerce template.</p>
</div>
</div>
</div>
</section> <!-- end typography -->
<!-- Quotes & Dropcaps -->
<section class="section-wrap pt-0">
<div class="container">
<div class="heading-row mb-40 text-center">
<h2 class="heading">Blockquote & Dropcaps</h2>
</div>
<div class="row">
<div class="col-sm-6">
<blockquote>
<p>
"We help founders at the formative stages of their venture, to take an idea from concept through to launch. We’re an engineering and design studio."
</p>
<span>- Donald Trump</span>
</blockquote>
</div>
<div class="col-sm-6 mt-30">
<p><span class="dropcap">C</span>
ark Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome clothes store with this Theme is easy than you can imagine. We possess within us two minds. So far I have written only of the conscious mind. I would now like to introduce you to your second mind, the hidden and mysterious subconscious. Our subconscious mind contains such power and complexity that it literally staggers the imagination.
</p>
</div>
</div>
</div>
</section> <!-- end quotes & dropcaps -->
<!-- Html Style -->
<section class="section-wrap pt-0">
<div class="container">
<div class="heading-row text-center">
<h2 class="heading">HTML Style</h2>
</div>
<div class="row">
<div class="col-xs-12">
<p>
Our Theme is a very slick and clean <a href="#">text link</a> with endless possibilities. Creating an awesome <strong>bold text</strong> store with this Theme is easy than you can imagine. We possess within us two minds. So far I have written only of the <i>italic text</i>. I would now like to introduce you to your second mind, the hidden and mysterious subconscious. Our subconscious mind contains such power and complexity that it literally bold text the imagination. We know that this subconscious mind controls and orchestrates our <span class="highlight">highlighted text</span> functions, from pumping blood to all parts of our body to egulating our breathing and digestion. We further know that the subconscious has recorded every event that has ever happened to us.
</p>
</div>
</div> <!-- end row -->
</div> <!-- end container -->
</section> <!-- end html style -->
<!-- Bullets & Lists -->
<section class="section-wrap pt-0">
<div class="container">
<div class="heading-row text-center">
<h2 class="heading">Bullets & Lists</h2>
</div>
<div class="row">
<div class="col-sm-3 mb-30">
<ul>
<li>Our Theme is a very slick</li>
<li>Clean & minimal design</li>
<li>The best theme ever</li>
<li>Super flexible template</li>
<li>Tons of features</li>
</ul>
</div> <!-- end col -->
<div class="col-sm-3 mb-30">
<ul class="list-arrows">
<li><i class="ui-arrow-right"></i> Our Theme is a very slick</li>
<li><i class="ui-arrow-right"></i> Clean & minimal design</li>
<li><i class="ui-arrow-right"></i> The best theme ever</li>
<li><i class="ui-arrow-right"></i> Super flexible template</li>
<li><i class="ui-arrow-right"></i> Tons of features</li>
</ul>
</div> <!-- end col -->
<div class="col-sm-3 mb-30">
<ul class="list-checks">
<li><i class="ui-check"></i> Our Theme is a very slick</li>
<li><i class="ui-check"></i> Clean & minimal design</li>
<li><i class="ui-check"></i> The best theme ever</li>
<li><i class="ui-check"></i> Super flexible template</li>
<li><i class="ui-check"></i> Tons of features</li>
</ul>
</div> <!-- end col -->
<div class="col-sm-3">
<ol>
<li>Our Theme is a very slick</li>
<li>Clean & minimal design</li>
<li>The best theme ever</li>
<li>Super flexible template</li>
<li>Tons of features</li>
</ol>
</div> <!-- end col -->
</div> <!-- end row -->
</div> <!-- end container -->
</section> <!-- end bullets & lists -->
<!-- Columns -->
<section class="section-wrap section-columns pt-0">
<div class="container">
<div class="heading-row text-center">
<h2 class="heading">Columns</h2>
</div>
<!-- 1/2 column -->
<div class="row">
<div class="col-sm-6">
<h6>1/2 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine.</p>
</div> <!-- end col -->
<div class="col-sm-6">
<h6>1/2 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine.</p>
</div> <!-- end col -->
</div> <!-- end row -->
<!-- 1/3 column -->
<div class="row">
<div class="col-sm-4">
<h6>1/3 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine.</p>
</div> <!-- end col -->
<div class="col-sm-4">
<h6>1/3 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine.</p>
</div> <!-- end col -->
<div class="col-sm-4">
<h6>1/3 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine.</p>
</div> <!-- end col -->
</div> <!-- end row -->
<!-- 1/4 column -->
<div class="row">
<div class="col-sm-3">
<h6>1/4 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
<div class="col-sm-3">
<h6>1/4 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
<div class="col-sm-3">
<h6>1/4 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
<div class="col-sm-3">
<h6>1/4 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
</div> <!-- end row -->
<!-- 1/3 2/3 column -->
<div class="row">
<div class="col-sm-4">
<h6>1/3 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine.</p>
</div> <!-- end col -->
<div class="col-sm-8">
<h6>2/3 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine. Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine.</p>
</div> <!-- end col -->
</div> <!-- end row -->
<!-- 1/4 3/4 column -->
<div class="row">
<div class="col-sm-3">
<h6>1/4 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
<div class="col-sm-9">
<h6>3/4 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine. Our Theme is a very slick and clean e-commerce template with endless possibilities. Creating an awesome website with this Theme is easy than you can imagine.</p>
</div> <!-- end col -->
</div> <!-- end row -->
<!-- 1/6 column -->
<div class="row">
<div class="col-sm-2">
<h6>1/6 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
<div class="col-sm-2">
<h6>1/6 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
<div class="col-sm-2">
<h6>1/6 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
<div class="col-sm-2">
<h6>1/6 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
<div class="col-sm-2">
<h6>1/6 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
<div class="col-sm-2">
<h6>1/6 Column</h6>
<p>Our Theme is a very slick and clean e-commerce template with endless possibilities.</p>
</div> <!-- end col -->
</div> <!-- end row -->
</div> <!-- end container -->
</section> <!-- end columns -->
<!-- Footer -->
<footer class="footer bg-dark">
<div class="container">
<div class="footer__widgets">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="widget footer__get-in-touch text-sm-center">
<div class="footer__logo">
<img src="img/logo_light.png" alt="">
</div>
<p class="footer__get-in-touch__paragraph">
<a href="mailto:hello@support.com">hello@support.com</a>
</p>
<p class="footer__get-in-touch__paragraph"><a href="tel:+64-93-310-70-50">+64 93 310 70 50</a></p>
</div>
</div> <!-- end get in touch -->
<div class="col-md-6 col-md-offset-2 col-sm-6 col-xs-12">
<div class="widget footer__nav-links text-right text-sm-center">
<ul class="list-inline">
<li><a href="#">Works</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div class="footer__socials mt-50">
<div class="social-icons social-icons--nobase">
<a href="#"><i class="ui-twitter"></i></a>
<a href="#"><i class="ui-facebook"></i></a>
<a href="#"><i class="ui-linkedin"></i></a>
<a href="#"><i class="ui-instagram"></i></a>
</div>
</div>
</div>
</div> <!-- end nav links / socials -->
</div>
</div>
</div>
</footer> <!-- end footer -->
<div id="back-to-top">
<a href="#top"><i class="ui-arrow-up"></i></a>
</div>
</div> <!-- end content wrapper -->
</main> <!-- end main wrapper -->
<!-- jQuery Scripts -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/plugins.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>