-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·48 lines (48 loc) · 1.4 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
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Maintenance</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.maintenance-container {
text-align: center;
}
.maintenance-image {
width: 200px;
margin-bottom: 20px;
}
.maintenance-title {
font-size: 24px;
margin-bottom: 10px;
}
.maintenance-message {
font-size: 16px;
margin-bottom: 20px;
}
.maintenance-contact {
font-size: 14px;
color: #007bff;
}
</style>
</head>
<body>
<div class="maintenance-container">
<img src="maintenance.png" alt="Maintenance" class="maintenance-image">
<h1 class="maintenance-title">Under Maintenance</h1>
<p class="maintenance-message">We apologize for the inconvenience. Our website is currently undergoing maintenance.</p>
<p class="maintenance-contact">For urgent inquiries, please contact support@example.com</p>
</div>
</body>
</html>