-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrorpage.html
More file actions
57 lines (57 loc) · 1.62 KB
/
errorpage.html
File metadata and controls
57 lines (57 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>We'll Be Back Soon</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(to right, #283048, #859398);
margin: 0;
color: #fff;
text-align: center;
}
.container {
max-width: 500px;
background: rgba(255, 255, 255, 0.1);
padding: 40px;
border-radius: 10px;
backdrop-filter: blur(10px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 28px;
margin-bottom: 10px;
}
p {
font-size: 16px;
opacity: 0.8;
}
.loader {
width: 50px;
height: 50px;
border: 5px solid rgba(255, 255, 255, 0.3);
border-top: 5px solid #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 20px auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<h1>We'll Be Back Soon</h1>
<p>Our website is temporarily unavailable due to maintenance. Please check back later.</p>
<div class="loader"></div>
</div>
</body>
</html>