-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
textstyles.html
132 lines (108 loc) · 4.01 KB
/
textstyles.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
<!DOCTYPE html>
<html lang="en">
<head>
<title><!DOCTYPE html>
<html lang="en">
<head>
<title>textStyles</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<br>
<!-- highlighting -->
<p>You can highlight text with the
<mark>mark tags</mark>
if you want.
</p>
<!-- quotes -->
<blockquote>
<p>Sometimes I wet the bed. On purpose.</p>
<footer>My Grandpa</footer>
</blockquote>
<!-- lists -->
<h4>Things to do when you're bored</h4>
<dl>
<dt>Indoors</dt>
<dd>- take a nap</dd>
<dd>- watch Netflix for 8 hours</dd>
<dt>Outdoors</dt>
<dd>- go back inside</dd>
</dl>
<!-- code -->
<p>To set the users weight use <code>setUserWeight(374);</code> with an integer</p>
<!-- multi line code -->
<p>For multiple lines of code, use the pre element:</p>
<pre>
for n in range(101):
if(n % 4 is 0):
print(n)
</pre>
<!-- keyboard input -->
<p>This is supposed to define keyboard input <kbd>Ctrl+Alt+Del</kbd></p>
<!-- contextual colors -->
<h4>Provides build in text color classes for different events</h4>
<p class="text-muted">This text is muted.</p>
<p class="text-success">This text indicates success.</p>
<p class="text-danger">This text represents danger.</p>
<!-- background colors -->
<p class="bg-success">This text indicates success.</p>
<p class="bg-danger">This text represents danger.</p>
</div>
</body>
</html>
</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<br>
<!-- highlighting -->
<p>You can highlight text with the
<mark>mark tags</mark>
if you want.
</p>
<!-- quotes -->
<blockquote>
<p>Sometimes I wet the bed. On purpose.</p>
<footer>My Grandpa</footer>
</blockquote>
<!-- lists -->
<h4>Things to do when you're bored</h4>
<dl>
<dt>Indoors</dt>
<dd>- take a nap</dd>
<dd>- watch Netflix for 8 hours</dd>
<dt>Outdoors</dt>
<dd>- go back inside</dd>
</dl>
<!-- code -->
<p>To set the users weight use <code>setUserWeight(374);</code> with an integer</p>
<!-- multi line code -->
<p>For multiple lines of code, use the pre element:</p>
<pre>
for n in range(101):
if(n % 4 is 0):
print(n)
</pre>
<!-- keyboard input -->
<p>This is supposed to define keyboard input <kbd>Ctrl+Alt+Del</kbd></p>
<!-- contextual colors -->
<h4>Provides build in text color classes for different events</h4>
<p class="text-muted">This text is muted.</p>
<p class="text-success">This text indicates success.</p>
<p class="text-danger">This text represents danger.</p>
<!-- background colors -->
<p class="bg-success">This text indicates success.</p>
<p class="bg-danger">This text represents danger.</p>
</div>
</body>
</html>