-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
42 lines (41 loc) · 982 Bytes
/
error.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
<html>
<head>
<title>Open Plaques</title>
</head>
<body>
<article>
<h1>Open Plaques</h1>
<p>We are sorry, but Open Plaques is currently unavailable.</p>
<p>We hope to resolve this issue soon.</p>
<footer>
<p>Twitter: <a href="https://twitter.com/openplaques" title="Open Plaques on Twitter">@openplaques</a>
| Facebook: <a href="https://www.facebook.com/OpenPlaques">Open Plaques</a></p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</article>
<style>
body {
font-family: 'Helvetica', sans-serif;
font-size: 16px;
background-color: #DEDEDE;
}
article {
max-width: 600px;
margin: 2em auto;
padding: 1em;
background: #FEFEFE;
}
h1 {
color: blue;
text-align: center;
margin: 0;
}
article footer {
border-top: 1px solid #AAA;
font-size: 14px;
text-align: center;
color: #888;
}
</style>
</body>
</html>