-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
35 lines (35 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Software Engineering Portfolio</title>
<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/post.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<script src="index.js"></script>
<script data-goatcounter="https://mlezh.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
</head>
<body>
<div id="root">
<header>
<nav>
<ul>
<li class="priority_nav"><a href="/">Michael Lezhnin</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="/about.html">About</a></li>
</ul>
</nav>
</header>
<main class="content">
<h1> About </h1>
<p> I'm Michael Lezhnin, a software engineer at TJX. Also occasionally a photographer. </p>
<hr>
<h1> This website </h1>
<p> This website is a handbuilt static webpage, deployed on GitHub pages. Design and inspiration drawn from <a href="https://ptrchm.com/">Piotr's website.</a></p>
</main>
</div>
</body>
</html>