Skip to content

Commit

Permalink
Update and rename index.md to index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
EndermanPC authored May 4, 2024
1 parent 62cf046 commit dab9f45
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 33 deletions.
38 changes: 38 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<title>Trang đã chuyển</title>
<meta http-equiv="refresh" content="3;url=https://lithicsoft.rf.gd">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f8f8f8;
font-family: Arial, sans-serif;
}
.container {
text-align: center;
}
</style>
<script>
var timeleft = 3;
var countdownTimer = setInterval(function(){
document.getElementById("countdown").innerHTML = "The website will redirect after " + timeleft + " seconds.";
timeleft -= 1;
if(timeleft <= 0){
clearInterval(countdownTimer);
document.getElementById("countdown").innerHTML = "Changing direction..."
}
}, 1000);
</script>
</head>
<body>
<div class="container">
<h1>The website has moved to another place!</h1>
<p id="countdown"></p>
</div>
</body>
</html>
33 changes: 0 additions & 33 deletions index.md

This file was deleted.

0 comments on commit dab9f45

Please sign in to comment.