-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
259 lines (222 loc) Β· 10.4 KB
/
index.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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FossTech - GitHub Workshop</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" rel="stylesheet">
<style>
.dark-bg {
background-color: #0d1117;
}
.content-card {
background-color: #161b22;
border: 1px solid #30363d;
}
.terminal-text {
border-radius: 6px;
background-color: #0d1117;
font-family: monospace;
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0px);
}
}
@keyframes typing {
0% {
transform: translateY(0px);
}
25% {
transform: translateY(-4px);
}
50% {
transform: translateY(0px);
}
75% {
transform: translateY(-4px);
}
100% {
transform: translateY(0px);
}
}
@keyframes wave {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(20deg);
}
50% {
transform: rotate(0deg);
}
75% {
transform: rotate(20deg);
}
100% {
transform: rotate(0deg);
}
}
.float {
animation: float 6s ease-in-out infinite;
}
.typing {
animation: typing 2s ease-in-out infinite;
}
.wave {
animation: wave 2s ease-in-out infinite;
transform-origin: 70% 70%;
}
.floating-students {
position: absolute;
z-index: -1;
opacity: 0.6;
}
</style>
</head>
<body class="dark-bg text-gray-300 min-h-screen overflow-x-hidden relative">
<!-- Animated Students in Background -->
<div class="floating-students left-0 top-20 float" style="animation-delay: -2s">
<svg width="100" height="100" viewBox="0 0 100 100" fill="none">
<circle cx="50" cy="30" r="20" fill="#4B5563" />
<rect x="30" y="50" width="40" height="40" rx="10" fill="#4B5563" />
<circle cx="40" cy="25" r="5" fill="#161b22" />
<circle cx="60" cy="25" r="5" fill="#161b22" />
<path d="M45 35 Q50 40 55 35" stroke="#161b22" stroke-width="2" class="wave" />
</svg>
</div>
<div class="floating-students right-0 top-40 float" style="animation-delay: -4s">
<svg width="100" height="100" viewBox="0 0 100 100" fill="none">
<circle cx="50" cy="30" r="20" fill="#4B5563" />
<rect x="30" y="50" width="40" height="40" rx="10" fill="#4B5563" />
<circle cx="40" cy="25" r="5" fill="#161b22" />
<circle cx="60" cy="25" r="5" fill="#161b22" />
<path d="M45 35 Q50 40 55 35" stroke="#161b22" stroke-width="2" />
</svg>
</div>
<header class="border-b border-gray-700 relative">
<div class="container mx-auto px-4 py-6">
<h1 class="text-4xl font-bold text-center text-white animate__animated animate__fadeIn">
π FossTech
</h1>
<p class="text-center text-blue-400 mt-2 animate__animated animate__fadeIn">
in collaboration with Tech Prasad
</p>
</div>
<!-- Typing Animation -->
<div class="absolute right-10 top-20 typing">
<svg width="80" height="80" viewBox="0 0 100 100" fill="none">
<circle cx="50" cy="30" r="20" fill="#6366F1" />
<rect x="30" y="50" width="40" height="40" rx="10" fill="#6366F1" />
<circle cx="40" cy="25" r="5" fill="white" />
<circle cx="60" cy="25" r="5" fill="white" />
<path d="M45 35 Q50 40 55 35" stroke="white" stroke-width="2" />
<rect x="15" y="60" width="30" height="20" fill="#4F46E5" />
</svg>
</div>
</header>
<main class="container mx-auto px-4 py-8 max-w-4xl relative">
<div class="content-card rounded-lg p-8 mb-8 animate__animated animate__fadeInUp">
<h2 class="text-3xl font-bold text-center text-white mb-6">
Introduction to GitHub
</h2>
<div class="space-y-6">
<div class="flex items-center space-x-4">
<span class="text-2xl">π</span>
<div>
<h3 class="font-semibold text-blue-300">Date</h3>
<p class="text-white">16 November 2024</p>
</div>
</div>
<div class="flex items-center space-x-4">
<span class="text-2xl">β°</span>
<div>
<h3 class="font-semibold text-blue-300">Time</h3>
<p class="text-white">2:00 PM to 4:00 PM</p>
</div>
</div>
<div class="flex items-center space-x-4">
<span class="text-2xl">π</span>
<div>
<h3 class="font-semibold text-blue-300">Venue</h3>
<p class="text-white">I3 Lab</p>
</div>
</div>
</div>
</div>
<!-- Learning Students Animation -->
<div class="absolute left-0 -translate-x-1/2 top-1/2 float" style="animation-delay: -3s">
<svg width="120" height="120" viewBox="0 0 120 120" fill="none">
<circle cx="60" cy="40" r="25" fill="#4B5563" />
<rect x="35" y="65" width="50" height="50" rx="10" fill="#4B5563" />
<circle cx="48" cy="35" r="6" fill="#161b22" />
<circle cx="72" cy="35" r="6" fill="#161b22" />
<path d="M52 45 Q60 50 68 45" stroke="#161b22" stroke-width="2" />
<rect x="85" y="30" width="30" height="20" fill="#4F46E5" class="typing" />
</svg>
</div>
<div class="content-card rounded-lg p-8 mb-8 animate__animated animate__fadeInUp">
<p class="text-lg leading-relaxed mb-6">
Are you interested in learning how to collaborate on code, track changes, and build projects
efficiently? Join us to discover the basics of GitHub, a powerful platform for developers and
enthusiasts alike!
</p>
<div class="mb-8">
<h3 class="text-2xl font-bold mb-4 text-blue-300">π‘ Topics Covered:</h3>
<ul class="space-y-3">
<li class="flex items-center space-x-3">
<span class="text-green-400">β</span>
<span>Setting up GitHub</span>
</li>
<li class="flex items-center space-x-3">
<span class="text-green-400">β</span>
<span>Understanding repositories, commits, and branches</span>
</li>
<li class="flex items-center space-x-3">
<span class="text-green-400">β</span>
<span>Collaborating on projects</span>
</li>
</ul>
</div>
<div class="terminal-text p-4">
<p class="text-gray-300 mb-2">π Requirements:</p>
<p class="text-gray-300">β’ Laptop with internet connection</p>
<p class="text-gray-300">β’ Your curiosity to learn!</p>
</div>
</div>
<div class="text-center mb-8">
<a href="https://forms.gle/NWjJMJHKLjhxyNsu6" target="_blank">
<button
class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-4 px-8 rounded-lg transition duration-300 transform hover:scale-105 animate__animated animate__pulse animate__infinite">
Register Now π
</button>
</a>
<p class="mt-4 text-gray-400">Bring your laptop and let's explore GitHub together!</p>
</div>
<!-- Waving Student Animation -->
<div class="absolute right-0 translate-x-1/2 bottom-0 float">
<svg width="120" height="120" viewBox="0 0 120 120" fill="none">
<circle cx="60" cy="40" r="25" fill="#6366F1" />
<rect x="35" y="65" width="50" height="50" rx="10" fill="#6366F1" />
<circle cx="48" cy="35" r="6" fill="white" />
<circle cx="72" cy="35" r="6" fill="white" />
<path d="M52 45 Q60 50 68 45" stroke="white" stroke-width="2" />
<rect x="10" y="40" width="30" height="15" fill="#4F46E5" class="wave" />
</svg>
</div>
</main>
<footer class="border-t border-gray-700 mt-8">
<div class="container mx-auto px-4 py-6 text-center">
<p class="text-gray-400">Looking forward to seeing you all there! β¨</p>
<p class="mt-2 text-blue-400">Best regards,<br>FossTech Club Team</p>
</div>
</footer>
</body>
</html>