55 lines
1.2 KiB
HTML
55 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Under Construction</title>
|
|
<style>
|
|
body {
|
|
background-color: #000;
|
|
color: #fff;
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
p {
|
|
font-size: 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
img {
|
|
margin-top: 3rem;
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
blink {
|
|
animation: blinker 1s linear infinite;
|
|
}
|
|
|
|
@keyframes blinker {
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
</style>
|
|
<link rel="icon" type="image/png" href="/assets/img/under-construction-icon-512.png">
|
|
<link rel="shortcut icon" href="/assets/img/under-construction-icon-512.png" type="image/x-icon">
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/all.min.css">
|
|
</head>
|
|
<body>
|
|
<h1>This page is under construction</h1>
|
|
<p>We're working on something awesome and can't wait to share it with you!</p>
|
|
<img src="https://www.placecage.com/640/360" alt="Construction image">
|
|
<p><blink>COMING SOON...</blink></p>
|
|
<div>
|
|
<i class="fas fa-desktop"></i> Best viewed on 800x600<br>
|
|
<i class="fab fa-netscape"></i> Optimized for Netscape Navigator
|
|
</div>
|
|
</body>
|
|
</html>
|