-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html.tpl
41 lines (38 loc) · 991 Bytes
/
404.html.tpl
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
<!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>
/* Add your custom styles here */
body {
background-color: #ffffff;
font-family: Arial, sans-serif;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 40px;
text-align: center;
}
h1 {
font-size: 36px;
color: #333;
margin-bottom: 20px;
}
p {
font-size: 18px;
color: #666;
margin-bottom: 30px;
}
</style>
</head>
<body>
<div class="container">
<h1>Oops! Something went wrong.</h1>
<p>We apologize for the inconvenience.</p>
<img src="http://storage.googleapis.com/${website_domain}/error.png" alt="Error" class="animation">
</div>
</body>
</html>