frontpage25/public/index.html
2025-05-12 03:48:00 -04:00

34 lines
878 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frontpage 25</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Frontpage 25</h1>
</header>
<main>
<nav id="sidebar">
<!-- Menu will be injected by JS -->
</nav>
<section id="content">
<h2>Welcome to the Future of the Past</h2>
<p>
This is a modern website with a 2003 aesthetic. You're
welcome.
</p>
</section>
</main>
<footer>
<p>&copy; 2025 Frontpage 25</p>
</footer>
<script src="script.js"></script>
</body>
</html>