-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
17 lines (17 loc) · 776 Bytes
/
404.html
File metadata and controls
17 lines (17 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 flex items-center justify-center h-screen">
<div class="text-center">
<h1 class="text-6xl font-bold text-gray-800">404</h1>
<p class="text-2xl font-light text-gray-600 mb-4">Oops! Page not found.</p>
<p class="text-gray-500 mb-8">The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
<a href="./index.html" class="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600">Go to Homepage</a>
</div>
</body>
</html>