-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
56 lines (46 loc) · 1.71 KB
/
Copy pathabout.html
File metadata and controls
56 lines (46 loc) · 1.71 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - My Simple Blog</title>
<link rel="stylesheet" href="assets/css/oat.css">
<link rel="stylesheet" href="assets/css/style.css">
<script src="assets/js/oat.js" defer></script>
<script src="assets/js/theme-toggle.js"></script>
</head>
<body>
<header>
<h1><a href="index.html">My Blog</a></h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="projects.html">Projects</a>
<button class="theme-toggle" aria-label="Toggle theme">
<svg viewBox="0 0 24 24">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
</button>
</nav>
</header>
<main>
<article class="post-body">
<h1>About Me</h1>
<p>Hello! I'm a software engineer passionate about building simple, effective software.</p>
<h2>My Background</h2>
<p>I specialize in backend development and systems engineering. I love Go, simple architectures, and keeping things minimal.</p>
<h2>Interests</h2>
<ul>
<li>Open Source Software</li>
<li>System Design</li>
<li>Minimalist Design</li>
<li>Coffee ☕</li>
</ul>
<p>Feel free to reach out to me via <a href="#">email</a> or connect on <a href="#">Twitter</a>.</p>
</article>
</main>
<footer>
<p>© 2023 My Simple Blog. Built with oat.ink.</p>
</footer>
</body>
</html>