-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap_typography.html
More file actions
79 lines (77 loc) · 3.01 KB
/
bootstrap_typography.html
File metadata and controls
79 lines (77 loc) · 3.01 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap Typography</title>
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<div class="container">
<h1 class="text-center">Bootstrap Typography</h1>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<h2 class="text-center">Text heading basics</h2>
<h1>Bootstrap<small> the best thing</small></h1>
</div>
</div>
<hr/>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<h2 class="text-center">Text alignment basics</h2>
<p class="text-left">This is a left text</p>
<p class="text-right">This is a right text</p>
<p class="text-justify">This is a justified text</p>
<p class="text-center">This is a center text</p>
</div>
</div>
<hr/>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<h2 class="text-center">Text formatting basics</h2>
<p>This is a normal paragraph</p>
<p class="lead">This is a lead paragraph</p>
<p><code>This is a code paragraph</code></p>
<p><em>This is a emphasized paragraph</em></p>
<p><i>This is a italicised paragraph</i></p>
<p><strong>This is a strong paragraph</strong></p>
<p><small>This is a small paragraph</small></p>
<p><mark>This is a marked paragraph</mark></p>
<p><ins>This is a inserted paragraph</ins></p>
<p><del>This is a deleted paragraph</del></p>
<p class="text-lowercase">This is a lower cased paragraph</p>
<p class="text-uppercase">This is a upper cased paragraph</p>
<p class="text-capitalize">This is a capitalized paragraph</p>
</div>
</div>
<hr/>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<h2 class="text-center">Text highlight basics</h2>
<p class="text-muted">This is a muted paragraph</p>
<p class="text-warning">This is a warning paragraph</p>
<p class="text-info">This is a info paragraph</p>
<p class="text-success">This is a sucess paragraph</p>
<p class="text-danger">This is a danger paragraph</p>
</div>
</div>
<hr/>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<h2 class="text-center">Text blockquote basics</h2>
<blockquote>
<p>Though I fly through the valley of death I shall fear no evil, for I am at 80,000 feet and climbing</p>
<small>by <cite>SR-71 Pilot</cite></small>
</blockquote>
<blockquote class="pull-right">
<p>Though I fly through the valley of death I shall fear no evil, for I am at 80,000 feet and climbing</p>
<small>by <cite>SR-71 Pilot</cite></small>
</blockquote>
</div>
</div>
<hr/>
</div>
<script type="text/javascript" charset="utf-8" src="jquery-1.11.3.js"></script>
<script type="text/javascript" charset="utf-8" src="bootstrap.min.js"></script>
</body>
</html>