-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
45 lines (45 loc) · 996 Bytes
/
404.html
File metadata and controls
45 lines (45 loc) · 996 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #1e1e2f;
color: #ffffff;
text-align: center;
padding: 50px;
}
h1 {
font-size: 6em;
color: #ff6b6b;
margin-bottom: 0;
}
p {
font-size: 1.5em;
margin-top: 0.5em;
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #4dabf7;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background 0.3s;
}
a:hover {
background-color: #228be6;
}
</style>
</head>
<body>
<h1>404</h1>
<p>Oops! The page you are looking for cannot be found.</p>
<a href="https://sam-ple.github.io/minescript-sample/">Return to Homepage</a>
</body>
</html>