-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
60 lines (55 loc) · 2.79 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<!--Main content section-->
<body class="bodyAbout">
<main>
<section>
<nav class="navStyle">
<ul>
<li class="navBar"><a href="index.html">Home</a></li>
<li class="navBar"><a href="about.html">About Me</a></li>
<li class="navBar"><a href="questions.html">Quiz</a></li>
</ul>
</nav>
<div class="content">
<div class="column1">
<h2 class="heading1">About Me</h2>
<p>I was born in Olympia, WA and lived there for the first 18 years of my life. After dropping out of high school I attended The Art Institute of Seattle eventually graduating with my associates degree in audio production. I then proceeded to bounce around from odd job to odd job. At this time I still had very lofty dreams.</p>
<p>Growing tired of where I was and feeling like I could have a grand adventure, I decided to join The United States Army. Two months after graduating basic training, I was deployed to Iraq to assist in helping them hold their elections. After another deployment to Afghanistan, I decided it was time for a new adventure in life.</p>
<p>Since my return back to Washington, I have completed my bachelor's degree in audio production and am now pursuing my interests in coding. I am looking forward to seeing where this next chapter in my life takes me!</p>
</div>
<!--<h2 class="topHeading">My list of dream jobs when I was 20</h2>-->
<div class="column2">
<h2 class="heading2">Job Wishlist When I was 20</h2>
<ul>
<li>Lead singer of famous rock band</li>
<li>Lead guitarist of famous rock band</li>
<li>Drummer for a famous rock band</li>
<li>Maybe a bass player for a famous rock band</li>
</ul>
</div>
<!--<h2 class="topHeading">Top ten favorite albums at this moment</h2>-->
<div class="column2">
<h2 class="heading2">Top 10 Records Right Now</h2>
<ol>
<li>Red Hot Chili Peppers - The Getaway</li>
<li>De La Soul - and the Anonymous Nobody</li>
<li>Childish Gambino - "Awaken, My Love!"</li>
<li>Symbion Project - Immortal Game</li>
<li>A Tribe Called Quest - We got it from Here...</li>
<li>Norah Jones - Day Breaks</li>
<li>Frank Ocean - Blonde</li>
<li>Ten Miles Wide - The Gross</li>
<li>Daft Punk - Random Access Memories</li>
<li>Chromeo - White Women</li>
</ol>
</div>
</div>
</section>
</main>
</body>
</html>