forked from BeauHibbert/201-lab02
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.32 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.32 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/style.css">
</head>
<header></header>
<body>
<h2>About Me</h2>
<p>I am 26 years old from Seattle Washington. I attended Washington State University to pursue a degree in economics before enrolling in Code Fellows. Previous to this I worked in the banking industry as a teller.</p>
<h2>Education</h2>
<ul>
<li>Code Fellows</li>
<li>Washington State University</li>
<li>Mercer Island Highschool</li>
</ul>
<h2>Work experience</h2>
<ul>
<li>WaFd Bank</li>
<li>Paggliacci</li>
<li>Evergreen Health</li>
</ul>
<h2>Top Ten Favorite College Football Teams</h2>
<ol>
<li>THE Washington State University</li>
<li>Dickerson State College</li>
<li>University of Montana</li>
<li>Michigan State University</li>
<li>Oregon State University</li>
<li>Boise State University</li>
<li>Missippi State University</li>
<li>University of Missippi</li>
<li>University of Kansas</li>
<li>North Dakota State University</li>
</ol>
</body>
<footer></footer>
<script src="./js/app.js"></script>
</html>