Initial commit

This commit is contained in:
Keith Solomon
2025-04-19 14:33:01 -05:00
commit 9654e9965c
9 changed files with 218 additions and 0 deletions

35
public/index.html Normal file
View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Index</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/about.html">About</a></li>
<li><a href="/index.html">Index</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome
</h1>
<p>
This is your first static site built with Go!
</p>
</main>
<footer>
<p>&copy; Keith Solomon</p>
</footer>
</body>