-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoon.html
More file actions
133 lines (108 loc) · 3.8 KB
/
soon.html
File metadata and controls
133 lines (108 loc) · 3.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>Coming Soon!</title>
<!-- Favicon -->
<link rel="icon" href="img/core-img/favicon.ico">
<!-- Responsive CSS -->
<link href="css/responsive.css" rel="stylesheet">
<!-- Font Awesome Script-->
<script src="https://kit.fontawesome.com/034893c064.js"></script>
<!-- Core Stylesheet -->
<link href="style.css" rel="stylesheet">
</head>
<style>
body,
html {
height: 100vh;
margin: 0;
}
.bgimg {
background-image: url("img/other-img/soonPage.png");
height: 100%;
background-position: center;
background-size: cover;
position: relative;
color: white;
font-family: "Courier New", Courier, monospace;
font-size: 25px;
}
.topleft {
position: absolute;
top: 0;
left: 16px;
}
.bottomleft {
position: absolute;
bottom: 16px;
left: 16px;
}
.middle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
hr {
margin: auto;
width: 40%;
}
</style>
<body>
<div class="bgimg">
<div class="topleft">
<a href="index.html"> <img src="img/core-img/logo.png" alt=""></a>
</div>
<div class="middle">
<span style="font-family:Courier New, Courier, monospace; font-size: 50px;"> COMING SOON</span></h1>
<h2>
<span
style="font-family:Courier New, Courier, monospace; font-size: 50px; color: white; position: relative; bottom: 50px;">______________</span>
</h2>
<h2>
<p id="demo"
style="font-family:Courier New, Courier, monospace; font-size: 30px; color: white; position: relative; bottom: 50px">
</p>
</div>
<div class="bottomleft">
<div class="mosh-buttons-area">
<a href="#" class="btn mosh-btn mosh-btn-2" onclick="goBack()" style="font-size: 20px;">Return</a>
</div>
</div>
</div>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Dec 1, 2020 0:0:1").getTime();
// Update the count down every 1 second
var countdownfunction = setInterval(function () {
// Get todays date and time
var now = new Date().getTime();
// Find the distance between now an the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(countdownfunction);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
function goBack() {
window.history.back();
}
</script>
</body>
</html>