-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
40 lines (37 loc) · 1007 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
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error - Deep's Portfolio</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
text-align: center;
}
.error-container {
margin: 100px auto;
padding: 20px;
max-width: 600px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #d9534f;
}
p {
color: #777;
}
</style>
</head>
<body>
<div class="error-container">
<h1>Oops! Something went wrong.</h1>
<p>We apologize for the inconvenience. Please try again later.</p>
<!-- You can add more details or instructions based on the specific error scenario -->
</div>
</body>
</html>