-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (49 loc) · 1.41 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
48
49
50
<!DOCTYPE html>
<html>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<style type="text/css">
body {
background-color:#001762;
color:#FFF;
border:0px;
margin:0px;
overflow:hidden;
}
.wrapper {
position:absolute;
left:0px;
right:0px;
width:100%;
height:100%;
display: flex;
align-items: center;
justify-content: center;
}
.imgheader {
float:left;
width:100%;
height:auto;
text-align:right;
}
.message {
float:left;
width:100%;
height:auto;
font-size:36px;
text-align:center;
font-family:Arial,Helvetica,sans-serif;
margin-top:25px;
margin-right:8%;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="imgheader"><img src="https://assets.digitalocean.com/other_images/sammy.png"/></div>
<div class="message">Water water everywhere...<br>
and not a drop to drink!</div>
</div>
</body>
</html>