-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path05 Typography.html
111 lines (85 loc) · 3.09 KB
/
05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Typography</title>
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery lib -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<hr>
<h1>Heading with <small>secondary text</small></h1>
<hr>
<!-- Highlight -->
<p>With Bootstrap we can <mark>Highlight</mark> text.</p>
<!-- Dotted Underline | Abbreviation -->
<p>We can also <abbr title="Explanation">Underline</abbr>
text with a Dotted line.</p>
<hr>
<!-- Blockquote -->
<h1>Blockquote</h1>
<blockquote>
<p>Never Put Number to your Success…
Jis Din Pura ho Gaya toh Kya Karega…
</p>
<footer>Zakir Khan</footer>
</blockquote>
<hr>
<h1>Blockquotes Reverse</h1>
<blockquote class="blockquote-reverse">
<p>Never Put Number to your Success…
Jis Din Pura ho Gaya toh Kya Karega…
</p>
<footer>Zakir Khan</footer>
</blockquote>
<hr>
<!-- Code Snippets -->
<h1>Code Snippets</h1>
<p>HTML Elements: <code>div</code>, <code>span</code>, section</p>
<!-- Keyboard Inputs -->
<h1>Keyboard Inputs</h1>
<p>Use <kbd>ctrl + c</kbd> to copy</p>
<hr>
<!-- Preserves Elements -->
<h1>Pre Tag</h1>
<pre>
The <code>pre</code> tag in
HTML is used to define the block
of preformatted text which
preserves the text spaces, line breaks, tabs,
but it can be changed using CSS
</pre>
<hr>
<!-- Contextual Classes -->
<h1>Contextual Classes</h1>
<p class="text-muted">Muted Text</p>
<p class="text-primary">Primary Text</p>
<p class="text-success">Success Text</p>
<p class="text-info">Information Text</p>
<p class="text-warning">Warning Text</p>
<p class="text-danger">Danger Text</p>
<hr>
<!-- Contextual BackgroundClasses -->
<h1>Contextual Classes</h1>
<p class="bg-muted">Muted Text</p>
<p class="bg-primary">Primary Text</p>
<p class="bg-success">Success Text</p>
<p class="bg-info">Information Text</p>
<p class="bg-warning">Warning Text</p>
<p class="bg-danger">Danger Text</p>
</div>
</body>
</html>