-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.21 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Under Development</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
text-align: center;
}
h1 {
font-size: 32px;
margin-bottom: 16px;
}
p {
font-size: 16px;
margin-bottom: 8px;
}
.logo {
display: block;
margin: 0 auto 24px;
width: 512px;
height: 512px;
}
</style>
</head>
<body>
<div class="container">
<img src="logo.png" alt="Website Logo" class="logo">
<h1>Website Under Development</h1>
<p>We are currently working on our new website. We apologize for any inconvenience this may cause.</p>
<p>Please contact us at <a href="mailto:[email protected]">[email protected]</a> for any questions.</p>
</div>
</body>
</html>