-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
44 lines (38 loc) · 1.32 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset ='UTF-8'/>
<meta name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
<link rel='stylesheet' href='styles.css'/>
<title>Jace Kendrick - About Me</title>
</head>
<body>
<div class='navbar'>
<ul>
<li><a href='index.html'>Home</a></li>
<li><a class='active' href='about.html'>About</a></li>
<li><a href='resume.html'>Resume</a></li>
</ul>
</div>
<div class='center-screen'>
<h1>About Me</h1>
<img src='./images/memoji.png' width='150'/>
</div>
<p>I am originally from Texas and am a current Computer Science student at Brigham Young University.</p>
<h3>Hobbies</h3>
<ul>
<li>Singing 🎤</li>
<li>Guitar 🎸</li>
<li>Frisbee 🥏</li>
<li>Golf ⛳️</li>
</ul>
<h3>Top 3 Favorite Movies</h3>
<ol>
<li>The Fellowship of the Ring (<em>The Lord of the Rings</em>)</li>
<li>A New Hope (<em>Star Wars</em>)</li>
<li>The Emperor's New Groove</li>
</ol>
<hr/>
</body>
</html>