|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <title>thenewboston</title> |
| 5 | + <meta charset="utf-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"> |
| 8 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> |
| 9 | + <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> |
| 10 | +</head> |
| 11 | +<body> |
| 12 | + |
| 13 | + <div class="container"> |
| 14 | + |
| 15 | + <br> |
| 16 | + <!-- highlighting --> |
| 17 | + <p>You can highlight text with the |
| 18 | + <mark>mark tags</mark> |
| 19 | + if you want. |
| 20 | + </p> |
| 21 | + |
| 22 | + <!-- quotes --> |
| 23 | + <blockquote> |
| 24 | + <p>Sometimes I wet the bed. On purpose.</p> |
| 25 | + <footer>My Grandpa</footer> |
| 26 | + </blockquote> |
| 27 | + |
| 28 | + <!-- lists --> |
| 29 | + <h4>Things to do when you're bored</h4> |
| 30 | + <dl> |
| 31 | + <dt>Indoors</dt> |
| 32 | + <dd>- take a nap</dd> |
| 33 | + <dd>- watch Netflix for 8 hours</dd> |
| 34 | + <dt>Outdoors</dt> |
| 35 | + <dd>- go back inside</dd> |
| 36 | + </dl> |
| 37 | + |
| 38 | + <!-- code --> |
| 39 | + <p>To set the users weight use <code>setUserWeight(374);</code> with an integer</p> |
| 40 | + |
| 41 | + <!-- multi line code --> |
| 42 | + <p>For multiple lines of code, use the pre element:</p> |
| 43 | +<pre> |
| 44 | +for n in range(101): |
| 45 | + if(n % 4 is 0): |
| 46 | + print(n) |
| 47 | +</pre> |
| 48 | + |
| 49 | + <!-- keyboard input --> |
| 50 | + <p>This is supposed to define keyboard input <kbd>Ctrl+Alt+Del</kbd></p> |
| 51 | + |
| 52 | + <!-- contextual colors --> |
| 53 | + <h4>Provides build in text color classes for different events</h4> |
| 54 | + <p class="text-muted">This text is muted.</p> |
| 55 | + <p class="text-success">This text indicates success.</p> |
| 56 | + <p class="text-danger">This text represents danger.</p> |
| 57 | + |
| 58 | + <!-- background colors --> |
| 59 | + <p class="bg-success">This text indicates success.</p> |
| 60 | + <p class="bg-danger">This text represents danger.</p> |
| 61 | + |
| 62 | + </div> |
| 63 | + |
| 64 | +</body> |
| 65 | +</html> |
| 66 | + |
| 67 | + |
| 68 | + |
| 69 | + |
| 70 | + |
| 71 | + |
| 72 | + |
| 73 | + |
| 74 | + |
| 75 | + |
| 76 | + |
| 77 | + |
| 78 | + |
| 79 | + |
| 80 | + |
| 81 | + |
| 82 | + |
| 83 | + |
| 84 | + |
| 85 | + |
0 commit comments