Skip to content

Commit

Permalink
Created home page
Browse files Browse the repository at this point in the history
  • Loading branch information
Bunny77K9 authored Dec 5, 2021
1 parent 31718d6 commit 5304ff4
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions HTML/Loading Home Page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Redirecting</title>
<style>
body{
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #042331;
}
svg{
width: 50px;
height: 50px;
}

svg rect{
width: 50px;
height: 50px;
fill: none;
stroke-width: 50px;
stroke: #00ADFF;
stroke-dasharray: 50;
stroke-dashoffset: 50%;
animation: animate 1s linear infinite;
}

@keyframes animate{
to{
stroke-dashoffset: 250%;
}
}

</style>
</head>
<body>
<svg>
<rect></rect>
</svg>
<script>
setTimeout(function(){
window.location.href = 'Main Page.html';
},3000);
</script>
</body>
</html>

0 comments on commit 5304ff4

Please sign in to comment.