-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 1.06 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maintenance Page</title>
<style>
body {
background-color: #333; /* Dark background */
color: #fff; /* Light text */
font-family: Arial, sans-serif;
text-align: center;
padding-top: 20%;
}
h1 {
font-size: 2.5em;
}
p {
font-size: 1.5em;
}
.responsive-text {
width: 80%;
margin: auto;
padding: 10px;
}
@media only screen and (max-width: 600px) {
h1 {
font-size: 2em;
}
p {
font-size: 1.2em;
}
}
</style>
</head>
<body>
<div class="responsive-text">
<h1>We're Undergoing Maintenance</h1>
<p>Our website is currently undergoing scheduled maintenance. We should be back shortly. Thank you for your patience!</p>
</div>
</body>
</html>