Skip to content

Commit

Permalink
Merge pull request #38 from Bunny77K9/main
Browse files Browse the repository at this point in the history
Created home page
  • Loading branch information
DuajDiaz authored Dec 5, 2021
2 parents 31718d6 + 5304ff4 commit dc4614d
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 dc4614d

Please sign in to comment.