27 lines
898 B
HTML
27 lines
898 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>404 - Page Not Found</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<!--#include virtual="/includes/navbar.html" -->
|
|
|
|
<main class="container">
|
|
<section class="hero">
|
|
<h1>404 - Page Not Found</h1>
|
|
<p>The page you're looking for doesn't exist.</p>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>What happened?</h2>
|
|
<p>The page you requested could not be found. It may have been moved, deleted, or never existed.</p>
|
|
<p><a href="/" style="color: #3498db; text-decoration: none; font-weight: bold;">← Go back to homepage</a></p>
|
|
</section>
|
|
</main>
|
|
|
|
<!--#include virtual="/includes/footer.html" -->
|
|
</body>
|
|
</html>
|