31 lines
442 B
HTML
31 lines
442 B
HTML
<!DOCTYPE html>
|
|
<html lang="nl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Offline</title>
|
|
<style>
|
|
body{
|
|
font-family: Arial, sans-serif;
|
|
background:#111;
|
|
color:#fff;
|
|
display:flex;
|
|
justify-content:center;
|
|
align-items:center;
|
|
height:100vh;
|
|
margin:0;
|
|
text-align:center;
|
|
}
|
|
.box{
|
|
background:#1c1c1c;
|
|
padding:40px;
|
|
border-radius:12px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<h1>Pech.</h1>
|
|
<p>De site is momenteel offline.</p>
|
|
</div>
|
|
</body>
|
|
</html> |