-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 788 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 788 Bytes
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
<html lang="en">
<head>
<title>vanwinckel.com</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style type="text/css">
html, body {
height: 100%;
font-family: 'Open Sans', sans-serif;
font-size: 12pt;
}
#centeredcontent {
width: 400px;
height: 100px;
text-align: center;
position: absolute;
left: 50%;
top: 50%;
margin-left: -200px;
/* Half the width of the DIV tag */
margin-top: -50px;
/* Half the height of the DIV tag */
}
</style>
</head>
<body>
<div id="centeredcontent">
<div style='font-size:30pt'>vanwinckel.com</div>
<br>
<div style='font-size:12pt'>Coming soon...</div>
</div>
</body>
</html>