-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello_world.html
149 lines (149 loc) · 5.06 KB
/
hello_world.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<a id="top"></a>
<main>
<h1>Hello from Codeup!</h1>
<div id="wrapper">
<p><span>Boston</span>'s pretty cool.</p>
<p>Emma Stone is... <br>Alright <em>I guess?</em></p>
<blockquote>bq shortcuts block quotes, a shortcuts anchor, img shortcuts image. Autocomplete/macros</blockquote>
<p>I'm too into figuring out BiS on FFXIV</p>
<p>Seriously though, Square <em><strong>SERIOUSLY</strong></em> gave me crap gear.</p>
<p>My tomestone legs are pretty damn good though. 123 Crit un-augmented? Aw hell yea. Hey, that's pretty good.</p>
</div>
<h2>My favorite quote:</h2>
<blockquote>And at last I resolved to scale that tower, fall though I might; since it were better to glimpse the sky and perish, than to live without ever beholding day.</blockquote>
<h2>I'm learning Web Development</h2>
<ul>
<li>Gotta make dem sick sites bruh.</li>
<li>All the BiS solver tools!</li>
<li>I'm just inclined to it.</li>
</ul>
<h2>My top 5 favorite foods</h2>
<ol>
<li>frozen spirits</li>
<li>pineapple upside-down cake</li>
<li>pipira-pira</li>
<li>baked pipira-pira</li>
<li>popotoes</li>
</ol>
<h2>Questions I'm often asked:</h2>
<dl>
<dt>What's the stat weight for SCH?</dt>
<dd><strong><em>CRIT</em></strong> > Det > Pie > SpS</dd>
<dt>What should I meld?</dt>
<dd><strong><em>ACCURACY MELDS EVERYWHERE!</em></strong></dd>
</dl>
<h2>My favorite sites</h2>
<ul>
<li><a href="http://www.reddit.com/r/ffxiv">/r/ffxiv</a></li>
<li><a href="http://www.reddit.com/r/hackmud">/r/hackmud</a></li>
<li><a href="https://discord.gg/JsxF98Q">Join my discord!</a></li>
</ul>
<h3>My vehicle</h3>
<p>My vehicle is a mount called Twintania. She is a nice raid boss and I like her very much. Shame she doesn't have unique music :/</p>
<a href="http://www.reddit.com/r/ffxiv"><img src="img/twintania.jpg" alt="Twintania"></a>
<h3>Decimal to Hexadecimal</h3>
<table>
<tr>
<th>Decimal</th>
<th>Hexadecimal</th>
</tr>
<tr>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>5</td>
</tr>
<tr>
<td>6</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>7</td>
</tr>
<tr>
<td>8</td>
<td>8</td>
</tr>
<tr>
<td>9</td>
<td>9</td>
</tr>
<tr>
<td>10</td>
<td>A</td>
</tr>
<tr>
<td>11</td>
<td>B</td>
</tr>
<tr>
<td>12</td>
<td>C</td>
</tr>
<tr>
<td>13</td>
<td>D</td>
</tr>
<tr>
<td>14</td>
<td>E</td>
</tr>
<tr>
<td>15</td>
<td>F</td>
</tr>
<tr>
<td>16</td>
<td>10</td>
</tr>
</table>
</main>
<nav>
<ul>
<li>
<a href="">test</a>
</li>
<li>
<a href="">stuff</a>
</li>
<li>
<a href="#top">return to top</a>
</li>
<li>
<a href="http://www.google.com/">Don't know something? Google it, loser.</a>
</li>
</ul>
</nav>
<dl>
<dt>Definition lists are done like this?</dt>
<dd>Yuperoni</dd>
</dl>
</body>
</html>