-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path500.html
More file actions
59 lines (53 loc) · 1.73 KB
/
500.html
File metadata and controls
59 lines (53 loc) · 1.73 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
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>500 - Internal Server Error</title>
<!-- Link to Google Icons CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
body {
background-color: #2ecc71; /* Green background color */
text-align: center;
font-family: Arial, sans-serif;
}
.container {
margin: 100px auto;
padding: 20px;
background-color: #ffffff; /* White container background color */
border-radius: 5px;
}
h1 {
color: #2ecc71; /* Green text color */
}
p {
color: #333; /* Dark text color */
}
.icon {
font-size: 100px;
color: #2ecc71; /* Green icon color */
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #2ecc71; /* Green button background color */
color: #fff; /* White button text color */
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
.button:hover {
background-color: #27ae60; /* Darker green on hover */
}
</style>
</head>
<body>
<div class="container">
<i class="material-icons icon">dns</i> <!-- Changed the icon to "dns" -->
<h1>500 - Internal Server Error</h1>
<p>Oops! Something went wrong on our server.</p>
<a href="home.html" class="button">Go Back Home</a>
</div>
</body>
</html>