-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypography.html
More file actions
243 lines (232 loc) 路 12.8 KB
/
Copy pathtypography.html
File metadata and controls
243 lines (232 loc) 路 12.8 KB
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="css/bootcatch-material.css">
<link rel="stylesheet" type="text/css" href="css/common.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- font awesome icons cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript" src="js/chart.min.js"></script>
<title>Bootcatch Light Admin theme!</title>
</head>
<body>
<div class="wrapper">
<!-- Sidebar -->
<nav id="sidebar" class="bg-white">
<div id="dismiss">
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
<ul class="nav flex-column">
<li class="nav-item dashboard">
<a class="nav-link active py-3 text-uppercase" href="index.html">Bootcatch Team</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="index.html">
<i class="fa fa-tachometer mr-2" aria-hidden="true"></i>
Dashboard</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="user.html">
<i class="fa fa-user-circle-o mr-2" aria-hidden="true"></i>
User Profile</a>
</li>
<li class="nav-item">
<a class="nav-link" href="table-list.html">
<i class="fa fa-list-alt mr-2" aria-hidden="true"></i>
Table list</a>
</li>
<li class="nav-item">
<a class="nav-link" href="typography.html">
<i class="fa fa-check-square-o mr-2" aria-hidden="true"></i>
Typography</a>
</li>
<li class="nav-item">
<a class="nav-link" href="alerts.html">
<i class="fa fa-university mr-2" aria-hidden="true"></i>
Alerts</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cards.html">
<i class="fa fa-university mr-2" aria-hidden="true"></i>
Cards</a>
</li>
<li class="nav-item">
<a class="nav-link" href="buttons.html">
<i class="fa fa-university mr-2" aria-hidden="true"></i>
Buttons</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fa fa-university mr-2" aria-hidden="true"></i>
Dummy section</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="http://bootcatch.com/material/alerts">
<i class="fa fa-tag mr-2" aria-hidden="true"></i>
Build with bootcatch-material</a>
</li>
<li class="nav-item border border-warning">
<a class="nav-link text-warning" href="http://bootcatch.com" target="_blank">
Bootcatch Free Themes</a>
</li>
</ul>
</nav>
<!-- end sidebar -->
<!-- Page Content -->
<div id="content">
<!-- navbar start -->
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
<a class="navbar-brand text-uppercase" href="index.html">Bootcatch</a>
<button type="button" id="sidebarCollapse" class="btn btn-light border d-flex align-items-center rounded-0">
<i class="fa fa-bars" aria-hidden="true"></i>
</button>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Action
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action 1</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Custom Menu
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#">Info</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Notification's
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">
<i class="fa fa-user-circle-o mr-2" aria-hidden="true"></i>
Got Lapi
</a>
<a class="dropdown-item" href="#">
<i class="fa fa-user mr-2" aria-hidden="true"></i>
Profile</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">
<i class="fa fa-lock mr-2" aria-hidden="true"></i>
Logout</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
User
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">
<i class="fa fa-user-circle-o mr-2" aria-hidden="true"></i>
Account</a>
<a class="dropdown-item" href="#">
<i class="fa fa-user mr-2" aria-hidden="true"></i>
Profile</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">
<i class="fa fa-lock mr-2" aria-hidden="true"></i>
Logout</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- navbar ends -->
<div class="container-fluid">
<div class="row typography">
<div class="col-md-6">
<div class="card">
<div class="card-body">
<div class="header">
<span>Headings</span>
</div>
<h1>h1. Bootstrap heading</h1>
<h2>h2. Bootstrap heading</h2>
<h3>h3. Bootstrap heading</h3>
<h4>h4. Bootstrap heading</h4>
<h5>h5. Bootstrap heading</h5>
<h6>h6. Bootstrap heading</h6>
<hr>
<div class="header">
<span>Inline text elements</span>
</div>
<p>You can use the mark tag to <mark>highlight</mark> text.</p>
<p><del>This line of text is meant to be treated as deleted text.</del></p>
<p><s>This line of text is meant to be treated as no longer accurate.</s></p>
<p><ins>This line of text is meant to be treated as an addition to the document.</ins></p>
<p><u>This line of text will render as underlined</u></p>
<p><small>This line of text is meant to be treated as fine print.</small></p>
<p><strong>This line rendered as bold text.</strong></p>
<p><em>This line rendered as italicized text.</em></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-body">
<div class="header">
<span>Display Headings</span>
</div>
<h1 class="display-1">Display 1</h1>
<h1 class="display-2">Display 2</h1>
<h1 class="display-3">Display 3</h1>
<h1 class="display-4">Display 4</h1>
<hr>
<div class="header">
<span>Blockquotes</span>
</div>
<blockquote class="blockquote">
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>
<hr>
<div class="header">
<span>Naming Source</span>
</div>
<blockquote class="blockquote">
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
</div>
</div>
<!-- footer start -->
<div class="footer" >
<p>2019 漏 <a href="http://bootcatch.com" target="_blank">bootcatch Team</a> , made with love for bootstrap lovers</p>
</div>
<!-- footer ends -->
</div>
</div>
<div class="overlay"></div>
<!-- opttional javascript -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/sidebar.js"></script>
<script type="text/javascript" src="js/chart.js"></script>
</body>
</html>