-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutme.html
39 lines (39 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>About Me</title>
<link rel="stylesheet" href="reset.css" type="text/css">
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<header>
<h1>About Me</h1>
<nav>
<ul>
<li> </li>
<li><a href="index.html">Home</a></li>
<li>|</li>
<li><a href="aboutme.html">About Me</a></li>
<li>|</li>
<li><a href="abouttwine.html">Twine</a></li>
</ul>
</nav>
</header>
<div id="aboutme">
<h2>About Me</h2>
<img src="img/fusionGodRobot.png" alt="A cylindrical robot modeled in Autodesk Fusion 360. Model credit CarboEmerald (aka Jeans Jake)." />
<p>Jeans Jake is a college student majoring in computer science. Their interests include math, chemistry, programming, and science fiction.</p>
</div>
<div class="clear"></div>
<footer>
<nav>
<ul>
<li> </li>
<li>Last updated 28 June 2020.</li>
<li>|</li>
<li><a href="privacy.html">Privacy</a></li>
</nav>
</footer>
</body>
</html>