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

51 lines
983 B
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;
text-align: center;
}
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>
<div>
<p>No one in particular :)</p>
<p>I'll write more later...</p>
</div>
<nav class="directory">
<dt><a href="/">back to home</a></dt>
</nav>
</body>
</html>