-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 906 Bytes
/
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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Construction</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
color: #333;
margin: 0;
padding: 0;
}
.container {
margin-top: 100px;
}
h1 {
font-size: 36px;
color: #d9534f;
}
p {
font-size: 20px;
color: #555;
}
img {
max-width: 300px;
margin-top: 30px;
}
</style>
</head>
<body>
<div class="container">
<h1>Website Under Construction</h1>
<p>We are working hard to bring you a website. Stay tuned!</p>
</div>
</body>
</html>