-
Notifications
You must be signed in to change notification settings - Fork 0
/
003-tabels.html
65 lines (54 loc) · 2.01 KB
/
003-tabels.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>thenewboston</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>