File size: 813 Bytes
685a6f9
 
 
 
 
f8a4a94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
685a6f9
 
f8a4a94
 
 
685a6f9
f8a4a94
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Website Under Maintenance</title>
    <style>
        body {
            text-align: center;
            padding: 150px;
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
        }

        h1 {
            color: #333;
        }

        p {
            color: #666;
            font-size: 20px;
        }

        .notice {
            color: #888;
            font-size: 18px;
        }
    </style>
</head>
<body>
    <h1>We'll be back soon!</h1>
    <p>Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!</p>
    <p class="notice">— The Team</p>
</body>
</html>