-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (58 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<header>
<img src=" https://students.galvanize.com/assets/galvanize-logo-ac9865cc4217b77aebbce9e63670dd96.svg " alt="Galvanize Logo" height="200px" width="400px">
</header>
<h2>Cities I Have Lived In</h2>
<ul>
<li>Broomfield
<br> Born and raised there
</li>
<li>Fort Collins
<br> Moved there for University
</li>
</ul>
<h2>Cities I Would Like To Visit</h2>
<ol>
<li>
<strong>
Tokyo
<br> Looks fun
<span>¥</span>
</strong>
</li>
<li>
<em>
Sydney
<br> Beaches and sealife
<span>$</span>
</em>
</li>
<li>
<strong>
Lyon
<br> To try the Food
<span>€</span>
</strong>
</li>
</ol>
<div>
<audio controls="controls">
Your browser does not support the
<code>audio</code> element.
<source src="https://upload.wikimedia.org/wikipedia/en/0/04/Rayman_2_music_sample.ogg" type="audio/wav">
</audio>
</div>
<div>
<video controls autoplay width="100%">
<source src="https://upload.wikimedia.org/wikipedia/en/2/28/Illusion_movie.ogg" type="video/ogg">
<code>video</code> element.
</video>
</div>
</body>
<footer>
</footer>
</html>