38 lines
937 B
HTML
38 lines
937 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Service Unavailable</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
padding: 50px;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
h1 {
|
|
font-size: 50px;
|
|
color: #333;
|
|
}
|
|
p {
|
|
font-size: 20px;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
<meta http-equiv="refresh" content="2">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Service Unavailable</h1>
|
|
<p>The service is currently unavailable.</p>
|
|
<p>This page will refresh every 2 seconds.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|