-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<title>I love raw HTML!!!</title>
</head>
<body>
<h1>Lets see what random stuff is on here</h1>
<div>
<p>Nested nestington</p>
<ul>
<h1>Unordered list of cities I have lived in.</h1>
<p>I was born and raised in Libby. I went to Montana Tech in Butte. Once I joined the Space Force Denver is my first duty station.</p>
<li>Libby</li>
<li>Butte</li>
<li>Denver</li>
</ul>
<ol>
<h1>Ordered list of cities I would like to visit.</h1>
<p>I have a very good friend of mine that lives in Birmingham I would love to got talk trash about his hometown in his hometown. I go to Vegas every year for a fighting game tournament and am excited to go back this year. I would love to go to Germany during October fest and enjoy the beer.</p>
<li><strong>Birmingham</strong><span> - I'd like to diss my friend's hometown in person.</span></li>
<li><em>Las Vegas</em><span> - My favorite city I visit every year.</span></li>
<li><strong>Munich</strong><span> - Id like to wear lederhosen and get drunk with Germans.</span></li>
</ol>
<img
class = "picture"
src = "/home/toll/sdi/orange.png"
height = 200
width = 200
/>
<video controls width = "250" autoplay>
<source
src="/home/toll/sdi/feeltherainonyourskinspell.mp4"
type="video/mp4"/>
</video>
<a href="/home/toll/sdi/favorites.html"> Want to know my favorite animal?</a>
</div>
</body>
</html>