-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Project</title>
</head>
<body>
<h1>Places I have lived</h1>
<dd>I grew up in Longmont then went to Logan for school. I PCSed to Sierra vista for BOLC, then my first duty station was in Fort Irwin. I did a summer study abroad in Jordan and am now stationed at Fort Bragg near Fayeteeville.</dd>
<ul>
<li>Longmont<span> - Born and raised for 18 years.</span></li>
<li>Logan<span> - 5 years of university studies.</span></li>
<li>Sierra vista<span> - 1 year for the Basic Officer Leaders Course.</span></li>
<li>Fort Irwin<span> - Stationed here for 4 years.</span></li>
<li>Amman<span> - Studied abroad here for one summer.</span></li>
<li>Fayetteville<span> - Stationed here for 3 years.</span></li>
</ul>
<h1>Places I would like to visit</h1>
<dd>I would like to visit Taiwain and Hong Kong to Practice my Chinese and learn some Cantonese. Atlantis would be cool so I could hang out with the glowy blue people.</dd>
<ol>
<li><strong>Taipei</strong></li>
<li><em>香港</em></li>
<li><strong>Atlantis</strong></li>
</ol>
<div>
<img src="https://briandbuckley.com/wp-content/uploads/2018/03/atlantis3.jpg" style="height:200px;width400px" alt="Image of characters from atlantis">
</div>
<section>
<a href="favorites.html">Another Page</a> <br>
<a href="form.html">Fill out a form</a> <br>
<a href="index1.html">Fill out another form</a>
</section>
<footer><em>Copyright cjtaberskiproductions</em></footer>
</body>
</html>