-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
29 lines (26 loc) · 989 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<script src="javascript.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav><div id="links">
<a href="index.html">Home</a>
<a class="active" href="#">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact Me</a>
</div>
</nav>
<h2>About Me</h2>
<h3>Reading</h3>
<p>In my free time I do a lot of reading, I really like lovecraftian horror books in particular, especially the cthulu mythos stories.</p>
<h3> Painting</h3>
<p>I do occasionally use painting as a creative outlet, I think focusing on something arbitrary can be really calming.</p>
<h3>Gaming</h3>
<p>Gaming is probably what takes up most of my free time, I like to challenge myself so I'm partial to competitive and difficult games.</p>
</body>
</html>