-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (60 loc) · 1.48 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>— Coming Soon</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta
name="description"
content="This is a default index page for a new domain."
/>
<style type="text/css">
body {
font-size: 10px;
color: #777777;
font-family: arial;
text-align: center;
}
h1 {
font-size: 64px;
color: #555555;
margin: 70px 0 50px 0;
}
p {
width: 320px;
text-align: center;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
div {
width: 320px;
text-align: center;
margin-left: auto;
margin-right: auto;
}
a:link {
color: #34536a;
}
a:visited {
color: #34536a;
}
a:active {
color: #34536a;
}
a:hover {
color: #34536a;
}
</style>
</head>
<body>
<h1 id="domain"></h1>
<div>
<a href="https://mrdemonwolf.me/">Powered by MrDemonWolf, Inc.</a>
</div>
<script>
document.querySelector("#domain").innerHTML = window.location.hostname;
document.querySelector("title").innerHTML =
window.location.hostname + "— Coming Soon";
</script>
</body>
</html>