-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
72 lines (63 loc) · 2.01 KB
/
error.html
File metadata and controls
72 lines (63 loc) · 2.01 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
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.peternokes.co.uk/assets/css/index.css">
<title>Error Page</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Ensure the body takes up the full viewport height */
margin: 0; /* Remove default margin */
}
.error-container {
padding: 20px;
background-color: transparent;
border-radius: 5px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
width: 50%;
text-align: center; /* Center the text within the container */
}
h1 {
color: white;
}
p {
color: white;
}
.social-buttons {
display: flex;
align-items: center;
justify-content: center;
}
@media screen and (max-width: 600px) {
.error-container {
width: 100%;
}
h1 {
font-size: 18px;
}
p {
font-size: 12px;
}
.social-button {
font-size: 12px;
padding: 8px 16px;
}
}
</style>
</head>
<body>
<div class="error-container">
<h1>Oops! Something went wrong.</h1>
<p>We're sorry, but it seems that an error has occurred.</p>
<center>
<div class="social-buttons">
<a class="social-button trans-button" href="https://www.peternokes.co.uk"><i class="fa fa-search"></i><b> Go to Homepage</b></a>
</div>
</center>
</div>
</body>
</html>