34 lines
878 B
HTML
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>© 2025 Frontpage 25</p>
|
|
</footer>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|