zachery.lol/routes/root/index.html
Aaron Global 6f49740c39 init
2025-11-17 17:21:49 -05:00

55 lines
1.1 KiB
HTML
Executable file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Zach's page</title>
<style>
body {
font-family: system-ui, sans-serif;
background-color: Cornsilk;
}
header h2 {
font-weight: normal;
font-family: "Gill Sans", sans-serif;
text-align: center;
}
body {
margin: 0;
padding: 0;
}
nav.directory {
text-align: center;
padding: 1rem 0;
}
nav.directory dt {
margin: 1.2rem 0;
font-size: 1.1rem;
}
nav.directory dt a {
text-decoration: none;
color: #333;
padding: 0.5rem 1rem;
display: inline-block;
}
</style>
</head>
<body>
<header>
<h2>Zachery Aaron Shores-Chmielewski</h2>
</header>
<nav class="directory">
<nav>
<dl>
<dt><a href="./who">Who</a></dt>
<!-- <dt><a href="#">Writing</a></dt> -->
<dt><a href="./contact">Send me a message</a></dt>
</dl>
</nav>
</nav>
</body>
</html>