-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 819 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
42
43
44
<!doctype html>
<body background="https://cdn.pixabay.com/photo/2016/10/29/01/35/abstract-1779605_960_720.png">
<title>Welcome to my site!</title>
<style>
body {
text-align: center;
padding: 150px;
}
h1 {
font-size: 50px;
}
body {
font: 20px Helvetica, sans-serif;
color: #FFFFFF;
}
article {
display: block;
text-align: left;
width: 950px;
margin: 0 auto;
}
a {
color: #dc8100;
text-decoration: none;
}
a:hover {
color: #FFFFFF;
text-decoration: none;
}
</style>
<article>
<h1>This is the home of my site but it is currently under construction</h1>
<div>
<p>Sorry for the inconvenience, please check back later for new content</p>
</div>
</article>
</body>