37 lines
921 B
HTML
37 lines
921 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<link href="index.css" rel="stylesheet">
|
|
<title>Future</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img src="/img/pfp.png" width="141" alt="my profile picture">
|
|
<div class="headerContent">
|
|
<h1>Chopster44.com</h1>
|
|
<div>
|
|
<a class="link" href="/">home</a>
|
|
<a class="link" href="/blog">blog</a>
|
|
<a class="link" href="/now">now</a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<h1> Future </h1>
|
|
<p> This page is like a changelog but in reverse, instead of making a list of things I have changed or added, its a list of things I want to add or change about this website</p>
|
|
<ul>
|
|
<li> A blog </li>
|
|
<li> A /about </li>
|
|
<li> Some nice css </li>
|
|
<li> A /now </li>
|
|
</ul>
|
|
</main>
|
|
<footer>
|
|
<hr>
|
|
<p>© chopster44 2024</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|