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
138 lines (128 loc) · 5.11 KB
/
index.html
File metadata and controls
138 lines (128 loc) · 5.11 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coffee with CodeCell | Aug 26</title>
<meta
name="description"
content="Join Coffee with CodeCell on Tue, Aug 26th! A free, friendly event for tech beginners to connect, learn, and kick-start their coding journey. Get real advice and find your place in tech."
/>
<meta
name="keywords"
content="CodeCell, coffee chat, tech event, student developers, beginner coding, programming, networking, A-Building Auditorium"
/>
<link rel="canonical" href="https://lu.ma/zpwy06qh" />
<meta property="og:title" content="Coffee with CodeCell" />
<meta
property="og:description"
content="Free coffee, friendly faces, and real talk about how to kick off your coding journey. Connect, learn, and find your place in tech."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lu.ma/zpwy06qh" />
<meta
property="og:image"
content="https://kjssecodecell.com/static/images/cwc.png"
/>
<meta property="og:site_name" content="KJSSE CodeCell" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Coffee with CodeCell" />
<meta
name="twitter:description"
content="Free coffee, friendly faces, and real talk about how to kick off your coding journey. Connect, learn, and find your place in tech."
/>
<meta
name="twitter:image"
content="https://kjssecodecell.com/static/images/cwc.png"
/>
<meta http-equiv="refresh" content="0; url=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 type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "Coffee with CodeCell",
"startDate": "2025-08-26T16:30:00+05:30",
"endDate": "2025-08-26T18:30:00+05:30",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"eventStatus": "https://schema.org/EventScheduled",
"location": {
"@type": "Place",
"name": "A-Building Auditorium",
"address": {
"@type": "PostalAddress",
"streetAddress": "A-Building Auditorium",
"addressLocality": "Mumbai",
"postalCode": "400086",
"addressRegion": "MH",
"addressCountry": "IN"
}
},
"image": [
"https://kjssecodecell.com/static/images/cwc.png"
],
"description": "Just getting started in tech? Come for the free coffee, stay for the friendly faces and real talk about how to kick off your coding journey. This evening is all about connecting, learning, and finding your place in tech.",
"url": "https://lu.ma/zpwy06qh",
"organizer": {
"@type": "Organization",
"name": "CodeCell",
"url": "https://kjssecodecell.com"
}
}
</script>
<script>
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>