forked from kjsce-codecell/kjsce-codecell.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 2.08 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 2.08 KB
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
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Redirecting to Coffee with CodeCell...</title>
<meta http-equiv="refresh" content="0; url=https://lu.ma/zpwy06qh" />
<link rel="canonical" href="https://lu.ma/zpwy06qh" />
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
.redirect-message {
text-align: center;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.spinner {
border: 4px solid #f3f3f3;
border-top: 4px solid #3498db;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 20px auto;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<script>
// JavaScript redirect as backup
window.location.replace("https://lu.ma/zpwy06qh");
</script>
</head>
<body>
<div class="redirect-message">
<h2>Redirecting to Coffee with CodeCell...</h2>
<div class="spinner"></div>
<p>
If you are not redirected automatically,
<a href="https://lu.ma/zpwy06qh">click here</a>.
</p>
</div>
</body>
</html>