-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
34 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../stylesheets/about.css">
<title>About</title>
</head>
<body>
<div class="container">
<div class="header">
<header>
<h1>Gamer Goods</h1>
</header>
</div>
<div class="sidebar">
<aside>
<p> Menu </p>
<a href="./home.html">
<i class="home" aria-hidden="true"></i> Home </a>
<a href="./about.html">
<i class="fa fa-laptop" aria-hidden="true"></i> About </a>
</aside>
</div>
<div class="developer-bio">
<p>Hi! My name is Michael Caldwell. My pronouns are He/Him/His. I am a Pursuit fellow with experience in Retail and Customer Service. My journey into software engineering began when I was a young boy wanting to create the games that I loved to play. My skills include problem-solving, creative thinking, and customer service. Given my passion for gaming and storytelling, I want to tell stories that illustrate my communities in the most authentic light possible.</p>
</div>
</div>
</body>
</html>