-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 3.29 KB
/
index.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
<!DOCTYPE html>
<html>
<head><title>This is my webpage.</title></head>
<body>
<h1 style="color: red;">Places I Have Lived</h1>
<ul>
<li>Longmont<span style="color: red;">(This feels redundant.)</span></li>
<dd>I moved here at 1 month old until I graduated highschool in 2011</dd>
<li>Logan<span style="color: red;">(This feels redundant.)</li>
<dd>I lived in Logan for 5 years while I attended University</dd>
<li>Amman<span style="color: red;">(This feels redundant.)</Span></li>
<dd>I lived in Amman during the summer of 2014 during a study abroad</dd>
<li>Sierra Vista<span style="color: red;">(This feels redundant)</span></li>
<dd>I lived in Sierra Vista for a total of 5 months during and after attending the Basic Officer Leaders Course</dd>
<li>Fort Irwin<span style="color: red;">(This feels redundant.)</span></li>
<dd>I lived in Fort Irwin for 4 years while I was assigned there</dd>
<li>Fayetteville<span style="color: red;">(This feels redundant).</span></li>
<dd>I lived in Fayetteville for 6 months between 2016-2017 and now for the past 3 years</dd>
</ul>
<h3>Places I Would Like to Live</h3>
<ol>
<li><strong>Atlantis</strong><span style="color: red;">(This feels redundant.)</span></li>
<dd>Hot glowy blue girls and floating fish-cars. Need I say more?</dd>
<li><em>Taipei</em><span style="color: red;">(This feels redundant.)</span></li>
<dd>I would like to practice the language I spent 1000 hours and $300,000 of DoD funds learning</dd>
<li><strong>相公</strong><span style="color: red;">(This feels redundant.)</span></li>
<dd>Same as above, but maybe learn some 广东话 while I'm at it</dd>
</ol>
<img src="https://interactive-examples.mdn.mozilla.net/media/cc0-images/grapefruit-slice-332-332.jpg" alt="Grapefruit slice atop a pile of other slices" style="float:right;width:500px;height:500px;" />
<table style="border: solid black 2px;">
<thead>
<tr>
<th>Header content 1</th>
<th>Header content 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Body content 1</td>
<td>Body content 2</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Footer content 1</td>
<td>Footer content 2</td>
</tr>
</tfoot>
</table>
<audio volume=".9" controls>
<source src="get-to-the-choppa-101soundboards.ogg" type="audio/ogg">
<source src="get-to-the-choppa-101soundboards.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>>
<a href="favorites.html">Another Page</a>
<dl>
<dt>Rock</dt>
<dd>Beats scissors</dd>
<dt>Paper</dt>
<dd>Beats rock</dd>
<dt>Scissors</dt>
<dd>Beats paper</dd>
</dl>
<a href="semantic-practice.html">Another Page</a>
<a href="form.html">Another Page</a>
</body>
</html>