28 lines
568 B
PHP
28 lines
568 B
PHP
<html>
|
|
<head>
|
|
<title>
|
|
We'll be back soon
|
|
</title>
|
|
<style>
|
|
body {
|
|
background-color: #f9f9f9;
|
|
color: #333;
|
|
text-align: center;
|
|
text-shadow: 0 1px 0 #fff;
|
|
font-size: 1.8em;
|
|
}
|
|
.missing {
|
|
width: 250px;
|
|
margin: 0 auto;
|
|
margin-top: 50px;
|
|
padding: 40px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="missing">
|
|
<h2>We'll be back soon</h2>
|
|
We're currently making improvements to our website.
|
|
</div>
|
|
</body>
|
|
</html> |