-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
32 lines (30 loc) · 1.31 KB
/
Copy path404.html
File metadata and controls
32 lines (30 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found | Dippan Bhusal</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Cookie&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: { bmcYellow: '#FFDD00' },
fontFamily: { sans: ['Poppins', 'sans-serif'], script: ['Cookie', 'cursive'] }
}
}
}
</script>
</head>
<body class="bg-gray-50 flex items-center justify-center h-screen text-center px-4">
<div class="max-w-md">
<h1 class="text-9xl font-bold text-bmcYellow animate-pulse">404</h1>
<h2 class="text-2xl font-bold text-gray-800 mt-4">Oops! Page not found.</h2>
<p class="text-gray-500 mt-2">The link you clicked might be broken or the page may have been removed.</p>
<a href="index.html" class="inline-block mt-8 px-8 py-3 bg-neutral-900 text-white rounded-full font-semibold hover:bg-black hover:scale-105 transition transform duration-200 shadow-lg">
Go Back Home
</a>
</div>
</body>
</html>