-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
67 lines (57 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>u dumb asf 💀💀</title>
<link rel="icon" type="image/png" href="famicon.ico">
<link href="https://fonts.googleapis.com/css?family=Consolas&display=swap" rel="stylesheet">
<style>
body {
background: linear-gradient(to right, red, orange);
color: #fff;
font-family: 'Consolas', sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
h1 {
font-size: 36px;
margin-top: 50px;
}
p {
font-size: 18px;
margin: 25px 0;
}
footer {
margin-top: 50px;
font-size: 16px;
}
@media screen and (max-width: 600px) {
h1 {
font-size: 24px;
margin-top: 25px;
}
p {
font-size: 20px;
margin: 15px 0;
}
}
a {
color: white
}
a:hover {
color: gray
}
a:active {
color: black
}
</style>
</head>
<body>
<h1>error 404, page not found. the page you're looking for cannot be found. if you entered the URL manually, check the URL and try again, otherwise, the page was probably moved or deleted.</h1>
</body>
</html>