-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
68 lines (63 loc) · 1.42 KB
/
404.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>--404--</title>
<style>
body {
background-color: #333;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
text-align: center;
position: absolute;
top: 46%;
left: 50%;
transform: translate(-50%, -50%);
}
h1 {
font-size: 4rem;
color: #fff;
margin-bottom: 20px;
/* make text not selectable */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
p {
font-size: 1.2rem;
color: #ccc;
margin-bottom: 40px;
/* make text not selectable */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #fff;
color: #333;
font-size: 1rem;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #ddd;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>Watchu doin here??</p>
<a href="/" class="button">Go back!</a>
</div>
</body>
</html>