30 lines
780 B
HTML
30 lines
780 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>404 Not Found</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>🚫 404 - Page Not Found</h1>
|
|
<div class="content">
|
|
|
|
<p>
|
|
<a href="home.html">🏠 Home</a> |
|
|
<a href="about.html">🧑 About</a> |
|
|
<a href="projects.html">💻 Projects</a> |
|
|
<a href="guestbook.html">📖 Guestbook</a> |
|
|
<a href="journal.html">📓 Journal</a> |
|
|
<a href="links.html">🔗 Links</a> |
|
|
<a href="secrets.html">🕵️ Secrets</a>
|
|
</p>
|
|
|
|
|
|
<div class="ascii-title">===[ WHOOPS! ]===</div>
|
|
<p>This page doesn't exist (yet?).</p>
|
|
<p>But hey, here's a cool dancing banana instead:</p>
|
|
<p><img src="https://media.giphy.com/media/TEnXkcsHrP4YedChhA/giphy.gif" class="gif" alt="dancing banana"></p>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|