-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutMe.html
60 lines (56 loc) · 1.5 KB
/
aboutMe.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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Bio</title>
</head>
<body>
<header>
<nav>
<label for="link1">Navigation: </label>
<br />
<a href="./index.html" id="link1">Main Page</a>
<br />
<a href="pictureCollage.html">Pet types</a>
<br />
<a href="survey.html">Build an ice cream cone!</a>
<br />
</nav>
<h1>About Ben Eger</h1>
</header>
<main>
<h2>Who am I?</h2>
<p>
I grew up in Noblesville as a middle child in a loving Christian home.
<br />
I'm <em>so thankful</em> for where I've come from and for my faith in
Jesus Christ that gives me hope and joy in all things! <br />
I'm also thankful for computers and piano and dogs and
<em>really good food!</em>
</p>
<aside>
<p>My family includes the following people:</p>
<ul>
<li>my mom,</li>
<li>my dad,</li>
<li>my older brother Josh,</li>
<li>me,</li>
<li>my younger brother Sam,</li>
<li>my sister Elizabeth, and</li>
<li>my dog Dexter (<em>of course!</em>)</li>
</ul>
</aside>
</main>
<footer>
<figure>
<img src="coryhenry.png" />
<figcaption>
A picture of me! (Jk, it's Cory Henry, one of my favorite keys
players)
</figcaption>
</figure>
</footer>
</body>
</html>