-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 892 Bytes
/
index.html
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
<html>
<head>
<style>
/* Webfont */
@import 'https://fonts.googleapis.com/css?family=Montserrat:400,700';
body {
background-color: #f6f6f6;
font-size: 24px;
font-family: 'Montserrat', Helvetica Neue, Helvetica, sans-serif;
}
p {
text-align: center;
margin: 2em;
color: #2b2b2b;
}
</style>
</head>
<body>
<p>My Portfolio website is in construction, taking you to temporary website 🚀</p>
<p>You will be redirected in <time><strong id="seconds">6</strong> seconds</time>.</p>
<script>var el = document.getElementById('seconds'),
total = el.innerHTML,
timeinterval = setInterval(function () {
total = --total;
el.textContent = total;
if (total <= 0) {
clearInterval(timeinterval);
window.location = 'https://riya-portfolio.framer.website/';
}
}, 1000);</script>
</body>
</html>