-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlock.html
More file actions
66 lines (48 loc) · 1.3 KB
/
lock.html
File metadata and controls
66 lines (48 loc) · 1.3 KB
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
<!DOCTYPE html>
<head>
<title>Site Under Maintenance</title>
<meta charset="UTF-8"/>
<link rel="shortcut icon" type="image/ico" href="images/favicon.ico"/>
<style>
html {
background-color: #a0a0a0;
padding: 0;
margin: 0;
color: #111111;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
.box {
padding: 20px;
border-radius: 10px;
max-width: 500px;
min-width: 500px;
width: 500px;
margin: 10px auto 0 auto;
background-color: #fafafa;
}
h1 {
font-size: 30px;
padding: 0;
margin: 0;
}
p {
text-align: justify;
}
</style>
</head>
<body>
<div class="box">
<h1>Site is Currently Under Maintenance</h1>
<p>
Hi, the site is currently undergoing some changes. Please hold until such a time as the changes are
complete.
</p>
<p>
If you would like to know when the site is online again, please visit J4's Twitter account:
<a href="http://twitter.com/J4Numbers" title="Twitter">@J4Numbers</a> to be notified.
</p>
<p>
Thanks for your patience.
</p>
</div>
</body>