-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
78 lines (68 loc) · 1.84 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
69
70
71
72
73
74
75
76
77
78
<!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 rel="icon" href="https://sigmagames69.github.io/img/favicon.png">
<style>
body {
margin: 0;
background-color: black;
background-image: url('img/cat.jpeg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: #39FF14;
font-family: 'Roboto', Arial, sans-serif;
text-align: center;
padding: 50px;
}
h1 {
font-size: 50px;
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: center;
}
h1 img {
width: 100px;
height: 100px;
margin-right: 20px;
}
h2 {
font-size: 24px;
margin-bottom: 40px;
}
p {
font-size: 18px;
margin-bottom: 30px;
}
a {
color: #55ff33;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
img {
background-color: white;
border-radius: 10px;
padding: -5px;
}
</style>
</head>
<body>
<h1>
<img src="img/favicon.png" alt="Site Picture">
404 Not Found
</h1>
<br>
<h2>Oops! The page you are looking for doesn't exist.</h2>
<p>It might have been removed, had its name changed, or is temporarily unavailable.</p>
<p>You can go back to the <a href="index.html">homepage</a> or wait for the page to be available again.</p>
<br>
<hr>
</body>
</html>