-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your Account is Setup</title>
<style>
html,
body {
background-color: #fafafa;
font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
font-size: 1.1rem;
line-height: 1.5;
color: rgb(32, 32, 32);
margin: auto;
}
.container {
max-width: 600px;
margin: auto;
padding: 1rem;
}
.pg-title {
font-size: 2rem;
font-weight: 700;
line-height: 1.1;
}
.txt-center {
text-align: center;
}
.mgt-30 {
margin-top: 3rem;
}
</style>
</head>
<body>
<div class="container">
<h1 class="pg-title txt-center mgt-3">Your New Hosting</h1>
<p class="txt-center mgt-3">
Hey there! If you're seeing this page then your account is setup, so
build away 😊
</p>
<p class="txt-center mgt-3">
If you are having any problems accessing your hosting account, please
contact your server administrator.
</p>
</div>
</body>
</html>