-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
39 lines (39 loc) · 957 Bytes
/
error.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
text-align: center;
}
.error-container {
margin-top: 100px;
}
h1 {
color: #333;
font-size: 3em;
}
p {
color: #666;
font-size: 1.2em;
}
a {
color: #007bff;
text-decoration: none;
}
</style>
</head>
<body>
<div class="error-container">
<h1>Oops! Something went wrong.</h1>
<p>We're sorry, but it seems there was an error. Please try again later.</p>
<p><a href="index.html">Go back to Home Page</a></p>
</div>
</body>
</html>