-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
51 lines (47 loc) · 1.06 KB
/
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
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">
<title>Error Page</title>
<style>
/* Reset some default styles */
body, h1, p {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.error-container {
text-align: center;
padding: 20px;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 36px;
margin-bottom: 10px;
color: #e74c3c;
}
p {
font-size: 18px;
}
</style>
</head>
<body>
<div class="error-container">
<h1>Oops! Something went wrong.</h1>
<p>We're sorry, but an error occurred while processing your request.</p>
<p>Please try again later or contact our support team for assistance.</p>
</div>
</body>
</html>