-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 3.22 KB
/
Copy pathindex.html
File metadata and controls
88 lines (79 loc) · 3.22 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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1 id="intro">Hi, I'm Andrew!</h1>
</header>
<main>
<figure>
<img src="img/IMG_E2021_Mt-Baker.jpg" alt="Image of Mt Baker" />
</figure>
<div>
<h1>A Little About Me</h1>
<p>I'm currently a student at Code Fellows. I've studied a few other places before as well, but for most of the past 4 years I've been in the workforce. I recently decided to go back to school to study software development so I can spend my working career doing something I love every day: solving problems with code!</p>
</div>
<div>
<h2>Experience</h2>
<ul>
<li>Faithlife Corporation | Production Manager | June 2016 - Dec. 2018</li>
<li>Faithlife Corporation | Latin Language Editor | May 2015 - June 2016</li>
</ul>
</div>
<div>
<h2>Education</h2>
<ul>
<li>Code Fellows | Seattle, WA</li>
<li>Our Lady of Guadalupe Seminary | Denton, NE</li>
<li>Hillsdale College | Hillsdale, MI</li>
<li>Universität des Saarlandes | Saarbrücken, Germany</li>
</ul>
</div>
<div>
<!-- app.js program loops through an array storing my fav subjs and
populates array contents into list below in index.html-->
<h3>Some Favorite Subjects I've Studied</h3>
<ul>
<li id="bestsubjs0"></li>
<li id="bestsubjs1"></li>
<li id="bestsubjs2"></li>
<li id="bestsubjs3"></li>
</ul>
<br>
</div>
<div>
<h2>Guessing Game Questions</h2>
<ol>
<li>Want to play a guessing game?</li>
<li>Think I'm younger than 20?</li>
<li>Think I'm younger than 25?</li>
<li>Think I'm younger than 30?</li>
<li>Think I'm one of the following ages?</li>
</ol>
<br>
</div>
<section>
<h3>Top 10 Favorite Countries I've Visited</h3>
<br>
<ol>
<li>Germany</li>
<li>Belgium</li>
<li>Iceland</li>
<li>Hungary</li>
<li>France</li>
<li>Italy</li>
<li>Mexico</li>
<li>Luxembourg</li>
<li>Austria</li>
<li>Slovakia</li>
</ol>
<br>
</section>
</main>
<script src="js/app.js"></script>
</body>
</html>