forked from bardiz12/octopus404
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.32 KB
/
index.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
27
28
29
30
31
32
33
34
<!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>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css"
/>
<link rel="stylesheet" href="assets/css/app.css">
</head>
<body>
<div class="flex text-center h-screen bg-404 animate__animated animate__fadeIn">
<div class="mx-auto mb-auto bg-white error-box md:p-32 sm:p-2 md:w-10/12 xs:w-100 xs:h-screen shadow">
<div class="animate__animated animate__wobble">
<div class="text-error-404">404</div>
</div>
<div class="message">
<span class="title block">SORRY.</span>
<p class="subtitle">
The Page You’re Looking For<br>
Is’nt Here, Maybe
</p>
<div class="md:mt-5">
<a href="#" class="link bg-black p-2 text-white uppercase">Head back home?</a>
</div>
</div>
</div>
</div>
</body>
</html>