69 lines
1.0 KiB
HTML
69 lines
1.0 KiB
HTML
```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;
|
|
}
|
|
.spinner{
|
|
width:60px;
|
|
height:60px;
|
|
border:6px solid #444;
|
|
border-top:6px solid #fff;
|
|
border-radius:50%;
|
|
animation:spin 1s linear infinite;
|
|
margin:20px auto;
|
|
}
|
|
button{
|
|
padding:10px 18px;
|
|
margin-top:15px;
|
|
background:#333;
|
|
color:#fff;
|
|
border:none;
|
|
border-radius:6px;
|
|
cursor:pointer;
|
|
}
|
|
button:hover{
|
|
background:#555;
|
|
}
|
|
@keyframes spin{
|
|
0%{transform:rotate(0deg);}
|
|
100%{transform:rotate(360deg);}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<h1>Pech.</h1>
|
|
<p>De site is offline.</p>
|
|
<div class="spinner"></div>
|
|
<p>Er wordt momenteel aan gewerkt.</p>
|
|
|
|
<button onclick="doetNiks()">Deze knop doet niks</button>
|
|
</div>
|
|
|
|
<script>
|
|
function doetNiks(){
|
|
alert("Inderdaad.");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|
|
```
|