something
This commit is contained in:
parent
733789ef91
commit
0995b2d6de
5
assets/css/all.min.css
vendored
Normal file
5
assets/css/all.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
0
assets/img/under-construction-icon-512.png
Normal file
0
assets/img/under-construction-icon-512.png
Normal file
54
index.html
Normal file
54
index.html
Normal file
|
@ -0,0 +1,54 @@
|
|||
<!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>
|
Loading…
Reference in a new issue