-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
51 lines (44 loc) · 1.2 KB
/
Copy path404.php
File metadata and controls
51 lines (44 loc) · 1.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<title>You Are Probably Lost</title>
<style>
body {
font-family: 'Arial', sans-serif;
text-align: center;
background-color: #3498db; /* Blue background color */
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1 {
color: #fff; /* White text color */
margin-bottom: 10px;
}
p {
color: #ecf0f1; /* Light gray text color */
margin: 10px 0;
}
a {
color: #2c3e50; /* Dark gray link color */
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Oops! You are probably lost.</h1>
<p>Let's get you back on track:</p>
<p><a href="/">Go back</a></p>
</body>
</html>