-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_cons.html
37 lines (33 loc) · 1018 Bytes
/
index_cons.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
36
37
<html>
<head>
<title>Devashish</title>
<link rel="stylesheet" href="css/main.css" type="text/css">
<!--meta http-equiv="refresh" content="5; URL=https://devacsh.wordpress.com/">
<meta name="Devashish" content="automatic redirection"-->
<link href="https://fonts.googleapis.com/css?family=Yatra+One" rel="stylesheet">
</head>
<body>
<div class="titled">
Hey, I am <span class="name">Devashish Gupta</span>.
<br/>nice to see you...!<br/>
</div>
<div class="titlee">
page is under construction <span id="bg"> </> </span><br/><br/>
redirecting to blog page within <span id="countdown" class =""></span> seconds ;)
</div>
</body>
<script>
var seconds = 6;
function countdown() {
seconds = seconds - 1;
if (seconds <0) {
window.location = "https://devacsh.wordpress.com";
} else {
//console.log(seconds);
document.getElementById("countdown").innerHTML = seconds;
window.setTimeout("countdown()", 1000);
}
}
countdown();
</script>
</html>