23 lines
790 B
HTML
23 lines
790 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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-6 text-center">
|
|
<h1 class="display-1">404</h1>
|
|
<h2 class="mb-4">Page Not Found</h2>
|
|
<p class="text-muted mb-4">
|
|
The page you are looking for doesn't exist.
|
|
</p>
|
|
<a href="/" class="btn btn-primary">Go to Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|