Added initial files
This commit is contained in:
parent
14457d0d1d
commit
7e4483f27b
46
404.html
Normal file
46
404.html
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-au">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||||
|
<title>.tas/ domains</title>
|
||||||
|
<meta name="description" content=".tas/ domains">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
|
||||||
|
<link rel="stylesheet" href="assets/css/404.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body><!-- partial:index.partial.html -->
|
||||||
|
<p>HTTP: <span>404</span></p>
|
||||||
|
<div style="text-align: center;">
|
||||||
|
<div style="display: inline-block;text-align: left;">
|
||||||
|
<code><span>this_page</span>.<em>not_found</em> = true;</code>
|
||||||
|
<code><span>if</span> (<b>you_spelt_it_wrong</b>){<br><span>autocorrect</span>.<em>enable</em>();<br>}</code>
|
||||||
|
<code><span>else if</span> (<b>we_screwed_up</b>){<br><em>alert</em>(<i>"Strewth mate, you're lost! Fair dinkum, why are you here?"</i>);<br><span>window</span>.<em>location</em> = home;<br>}</code>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- partial -->
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function callback(){
|
||||||
|
return function(){
|
||||||
|
alert("Strewth mate, you're lost! Fair dinkum, why are you here?");
|
||||||
|
window.location = '/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var a = "world";
|
||||||
|
setTimeout(callback(), 5000);
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
|
||||||
|
<script src="assets/js/404.js"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
6
assets/bootstrap/css/bootstrap.min.css
vendored
Normal file
6
assets/bootstrap/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6
assets/bootstrap/js/bootstrap.min.js
vendored
Normal file
6
assets/bootstrap/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
74
assets/css/404.css
Normal file
74
assets/css/404.css
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
* {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: #282828;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-family: "Bevan", cursive;
|
||||||
|
font-size: 130px;
|
||||||
|
margin: 10vh 0 0;
|
||||||
|
text-align: center;
|
||||||
|
overflow-y: auto;
|
||||||
|
letter-spacing: 5px;
|
||||||
|
/*background-color: black;*/
|
||||||
|
color: black;
|
||||||
|
text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.1);
|
||||||
|
-moz-background-clip: text;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
p span {
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
color: #bdbdbd;
|
||||||
|
text-align: left;
|
||||||
|
display: block;
|
||||||
|
overflow-y: auto;
|
||||||
|
font-size: 16px;
|
||||||
|
margin: 0 30px 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
code span {
|
||||||
|
color: #f0c674;
|
||||||
|
}
|
||||||
|
|
||||||
|
code i {
|
||||||
|
color: #b5bd68;
|
||||||
|
}
|
||||||
|
|
||||||
|
code em {
|
||||||
|
color: #b294bb;
|
||||||
|
font-style: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
code b {
|
||||||
|
color: #81a2be;
|
||||||
|
font-weight: 500;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #8abeb7;
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 20px;
|
||||||
|
text-decoration: underline;
|
||||||
|
overflow-y: auto;
|
||||||
|
margin-top: 10px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 880px) {
|
||||||
|
p {
|
||||||
|
font-size: 14vw;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
BIN
assets/img/background.jpg
Normal file
BIN
assets/img/background.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.3 MiB |
BIN
assets/img/favicon.png
Normal file
BIN
assets/img/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
21
assets/js/404.js
Normal file
21
assets/js/404.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
function type(n, t) {
|
||||||
|
var str = document.getElementsByTagName("code")[n].innerHTML.toString();
|
||||||
|
var i = 0;
|
||||||
|
document.getElementsByTagName("code")[n].innerHTML = "";
|
||||||
|
|
||||||
|
setTimeout(function() {
|
||||||
|
var se = setInterval(function() {
|
||||||
|
i++;
|
||||||
|
document.getElementsByTagName("code")[n].innerHTML =
|
||||||
|
str.slice(0, i) + "|";
|
||||||
|
if (i == str.length) {
|
||||||
|
clearInterval(se);
|
||||||
|
document.getElementsByTagName("code")[n].innerHTML = str;
|
||||||
|
}
|
||||||
|
}, 10);
|
||||||
|
}, t);
|
||||||
|
}
|
||||||
|
|
||||||
|
type(0, 0);
|
||||||
|
type(1, 600);
|
||||||
|
type(2, 1300);
|
45
index.html
Normal file
45
index.html
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" style="color: white;">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||||
|
<title>.tas/ domains</title>
|
||||||
|
<meta name="description" content=".tas/ domains">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="1024x1024" href="assets/img/favicon.png">
|
||||||
|
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5) 100%), url("assets/img/background.jpg") no-repeat, #000000;background-size: auto, cover, auto;color: white;">
|
||||||
|
<nav class="navbar navbar-dark navbar-expand">
|
||||||
|
<div class="container-fluid"><a class="navbar-brand" href="/" style="font-size: 30px;font-weight: bold;color: white;">.TLD/</a><button data-bs-toggle="collapse" class="navbar-toggler" data-bs-target="#navcol-1"><span class="visually-hidden">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
|
||||||
|
<div class="collapse navbar-collapse" id="navcol-1">
|
||||||
|
<ul class="navbar-nav ms-auto" style="font-size: 20px;font-weight: bold;">
|
||||||
|
<li class="nav-item"><a class="nav-link active" href="/">Home</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="https://reg.woodburn.au/tld/tas">Get yourname.tld/</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="https://hns.au" target="_blank">HNSAU</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
<header>
|
||||||
|
<div class="container">
|
||||||
|
<div style="text-align: center;">
|
||||||
|
<h1 class="display-1 text-center" style="font-weight: bold;margin: 0px;">.tld domains</h1><span style="font-weight: bold;font-size: 40px;"><br>The domain name for Tasmanian residents and businesses.<br><br></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<section style="font-size: 25px;">
|
||||||
|
<div class="text-center" id="pricing">
|
||||||
|
<p class="text-center" style="font-weight: bold;">.tld/ domains now available for registration at Woodburn Registry.</p><span>Get yourname.tld/ for $5/yr.<br>Price will likely be increasing to $10/yr</span>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<footer style="font-size: 25px;background: black;color: white;margin-top: 250px;"><span>© 2023 .tld/</span></footer><script src="https://nathan.woodburn/handshake.js" domain="nic.tld"></script>
|
||||||
|
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user