forked from Diptenusarkar/Website-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathError2.html
26 lines (21 loc) · 1.07 KB
/
Error2.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error 404 Code 2</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="flex justify-center items-center bg-gray-100 text-white h-screen">
<div
class="bg-blue-600 flex flex-col items-center justify-center p-2 md:rounded-2xl md:w-1/2 md:h-1/2 w-full h-full transition-all ease-in-out duration-300">
<p class="text-9xl font-mono font-bold">404</p>
<span class="text-xl font-sans font-semibold">Here is Some Problem!</span>
<span class="text-xl font-sans font-semibold text-center">The page you are looking for it maybe deleted</span>
<button
class="shadow-xl text-md font-bold font-mono bg-white text-blue-600 px-6 py-2 my-4 rounded-md hover:bg-blue-600 hover:text-white border-2 border-white transition-all ease-in-out duration-300">Go
to Home</button>
</div>
</body>
</html>