-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·45 lines (45 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<style type="text/css">
body {
background-color:#3686be;
color:#FFF;
border:0px;
margin:0px;
overflow:hidden;
}
.wrapper {
position:absolute;
top:15%;
left:0px;
right:0px;
width:100%;
height:auto;
}
.sammy {
float:left;
width:100%;
height:auto;
text-align:center;
}
.message {
float:left;
width:100%;
height:auto;
font-size:36px;
text-align:center;
font-family:Arial,Helvetica,sans-serif;
margin-top:25px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="sammy"><img src="https://assets.digitalocean.com/other_images/sammy.png"/></div>
<div class="message">Please log into your droplet via SSH to configure your LAMP installation.</div>
</div>
</body>
</html>