-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
65 lines (65 loc) · 1.92 KB
/
test.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting to the WebPage - Please Wait</title>
<meta http-equiv="refresh" content="0;url=https://coda.io/@adishsag/truth-about-payal">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
p {
color: #666;
margin-bottom: 1.5rem;
}
.loader {
border: 5px solid #f3f3f3;
border-top: 5px solid #3498db;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
margin: 0 auto 1.5rem;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
a {
color: #3498db;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
<script>
window.location.href = "https://coda.io/@adishsag/truth-about-payal";
</script>
</head>
<body>
<div class="container">
<h1>Redirecting you to our new site</h1>
<div class="loader"></div>
<p>If you are not redirected automatically, please <a href="https://coda.io/@adishsag/truth-about-payal">click here</a>.</p>
</div>
</body>
</html>