-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
19 lines (18 loc) · 852 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Param Thakkar</title>
<meta http-equiv="refresh" content="0;url=https://www.param.me"/>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-size: 150%; text-align: center; margin: 25vh auto; background-color: #932524; color: white;}
.loader { content: ""; width: 5rem; height: 5rem; border-radius: 50%; margin: auto; box-sizing: border-box; border-left: 0.5rem solid white; border-top: 0.5rem solid white; animation: rotate 1s linear infinite; }
@keyframes rotate { 0% { transform: rotate(0deg) } 100% { transform: rotate(360deg) } }
p { margin-top: 2.5rem }
</style>
</head>
<body>
<div class="loader"></div>
<p>Redirecting</p>
</body>
</html>