-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
449 lines (432 loc) · 29.1 KB
/
index.html
File metadata and controls
449 lines (432 loc) · 29.1 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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🎓 Academic Lab Repository - Computer Science Engineering</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'cs-blue': '#1e40af',
'cs-purple': '#7c3aed',
'cs-green': '#059669'
}
}
}
}
</script>
</head>
<body class="bg-gradient-to-br from-blue-50 to-indigo-100 text-gray-800 min-h-screen">
<!-- Header -->
<header class="bg-white shadow-lg border-b-4 border-cs-blue">
<div class="container mx-auto px-6 py-8">
<div class="text-center">
<h1 class="text-5xl font-bold bg-gradient-to-r from-cs-blue to-cs-purple bg-clip-text text-transparent mb-4">
🎓 Academic Lab Repository
</h1>
<p class="text-xl text-gray-600 mb-6">Computer Science Engineering Curriculum • 6 Semesters • 200+ Programs</p>
<!-- Statistics Cards -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mt-8">
<div class="bg-gradient-to-r from-blue-500 to-blue-600 text-white p-4 rounded-lg shadow-md">
<div class="text-2xl font-bold">6</div>
<div class="text-sm">Semesters</div>
</div>
<div class="bg-gradient-to-r from-purple-500 to-purple-600 text-white p-4 rounded-lg shadow-md">
<div class="text-2xl font-bold">10+</div>
<div class="text-sm">Languages</div>
</div>
<div class="bg-gradient-to-r from-green-500 to-green-600 text-white p-4 rounded-lg shadow-md">
<div class="text-2xl font-bold">15+</div>
<div class="text-sm">Subjects</div>
</div>
<div class="bg-gradient-to-r from-red-500 to-red-600 text-white p-4 rounded-lg shadow-md">
<div class="text-2xl font-bold">200+</div>
<div class="text-sm">Programs</div>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-6 py-8">
<!-- Overview Section -->
<section class="bg-white rounded-xl shadow-lg p-8 mb-8">
<h2 class="text-3xl font-bold text-cs-blue mb-4">📚 Overview</h2>
<p class="text-lg text-gray-700 leading-relaxed mb-6">
This comprehensive repository showcases the complete journey through a Computer Science Engineering curriculum,
demonstrating progression from fundamental programming concepts to advanced topics like Machine Learning,
DevOps, and Cloud Computing. Each semester builds upon previous knowledge, creating a structured learning path
through various domains of computer science.
</p>
<!-- Technology Tags -->
<div class="flex flex-wrap gap-2 mb-6">
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">Python</span>
<span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm font-medium">Java</span>
<span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm font-medium">C/C++</span>
<span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm font-medium">JavaScript</span>
<span class="bg-red-100 text-red-800 px-3 py-1 rounded-full text-sm font-medium">HTML/CSS</span>
<span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm font-medium">SQL</span>
<span class="bg-gray-100 text-gray-800 px-3 py-1 rounded-full text-sm font-medium">Assembly</span>
<span class="bg-teal-100 text-teal-800 px-3 py-1 rounded-full text-sm font-medium">Verilog</span>
<span class="bg-orange-100 text-orange-800 px-3 py-1 rounded-full text-sm font-medium">MATLAB</span>
<span class="bg-pink-100 text-pink-800 px-3 py-1 rounded-full text-sm font-medium">TCL/AWK</span>
</div>
</section>
<!-- Learning Path -->
<section class="mb-8">
<h2 class="text-3xl font-bold text-cs-blue mb-6">🚀 Learning Progression</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-white rounded-lg shadow-md p-6 border-l-4 border-blue-500">
<h3 class="text-xl font-bold text-blue-700 mb-2">🏗️ Foundation</h3>
<p class="text-gray-600 mb-2">Semesters 1-2</p>
<p class="text-sm">Mathematical foundations, basic programming concepts, and core computational thinking.</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 border-l-4 border-purple-500">
<h3 class="text-xl font-bold text-purple-700 mb-2">🏛️ Core CS</h3>
<p class="text-gray-600 mb-2">Semesters 3-4</p>
<p class="text-sm">Data structures, algorithms, systems programming, and computer architecture.</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 border-l-4 border-green-500">
<h3 class="text-xl font-bold text-green-700 mb-2">🎯 Specialization</h3>
<p class="text-gray-600 mb-2">Semesters 5-6</p>
<p class="text-sm">Advanced topics: AI/ML, web technologies, DevOps, and cloud computing.</p>
</div>
</div>
</section>
<!-- Semester Structure -->
<section class="mb-8">
<h2 class="text-3xl font-bold text-cs-blue mb-6">📋 Curriculum Structure</h2>
<div class="space-y-8">
<!-- Semester 1 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="bg-gradient-to-r from-blue-500 to-blue-600 text-white p-6">
<h3 class="text-2xl font-bold">📚 Semester 1 - Foundation</h3>
<p class="text-blue-100">Mathematical computing and programming fundamentals</p>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem1/Matlab" class="text-blue-600 hover:text-blue-800">🧮 MATLAB</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Mathematical computing and visualization</p>
<div class="flex flex-wrap gap-1">
<span class="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs">Calculus</span>
<span class="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs">Plotting</span>
<span class="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs">Analysis</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem1/Python" class="text-blue-600 hover:text-blue-800">🐍 Python</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Programming fundamentals</p>
<div class="flex flex-wrap gap-1">
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">Basics</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">Algorithms</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">Logic</span>
</div>
</div>
</div>
</div>
</div>
<!-- Semester 2 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="bg-gradient-to-r from-green-500 to-green-600 text-white p-6">
<h3 class="text-2xl font-bold">📚 Semester 2 - Core Programming</h3>
<p class="text-green-100">Advanced mathematical computing and system programming</p>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem2/Matlab" class="text-blue-600 hover:text-blue-800">🧮 MATLAB</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Advanced mathematical computing</p>
<div class="flex flex-wrap gap-1">
<span class="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs">Engineering</span>
<span class="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs">Computation</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem2/C" class="text-blue-600 hover:text-blue-800">⚙️ C Programming</a>
</h4>
<p class="text-gray-600 text-sm mb-2">System programming fundamentals</p>
<div class="flex flex-wrap gap-1">
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">Pointers</span>
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">Memory</span>
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">System</span>
</div>
</div>
</div>
</div>
</div>
<!-- Semester 3 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="bg-gradient-to-r from-purple-500 to-purple-600 text-white p-6">
<h3 class="text-2xl font-bold">📚 Semester 3 - Computer Systems & Programming</h3>
<p class="text-purple-100">Hardware design and advanced programming concepts</p>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem3/DDCO" class="text-blue-600 hover:text-blue-800">🔌 DDCO</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Digital Design & Computer Organization</p>
<div class="flex flex-wrap gap-1">
<span class="bg-teal-100 text-teal-800 px-2 py-1 rounded text-xs">Verilog</span>
<span class="bg-teal-100 text-teal-800 px-2 py-1 rounded text-xs">Circuits</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem3/DSA" class="text-blue-600 hover:text-blue-800">🗂️ DSA</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Data Structures & Algorithms</p>
<div class="flex flex-wrap gap-1">
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">Trees</span>
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">Graphs</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem3/Java" class="text-blue-600 hover:text-blue-800">☕ Java</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Object-oriented programming</p>
<div class="flex flex-wrap gap-1">
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs">OOP</span>
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs">Threading</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem3/OS" class="text-blue-600 hover:text-blue-800">💻 OS</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Operating Systems</p>
<div class="flex flex-wrap gap-1">
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded text-xs">Processes</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded text-xs">Memory</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem3/Excel" class="text-blue-600 hover:text-blue-800">📊 Excel</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Data analysis and visualization</p>
<div class="flex flex-wrap gap-1">
<span class="bg-yellow-100 text-yellow-800 px-2 py-1 rounded text-xs">Analytics</span>
</div>
</div>
</div>
</div>
</div>
<!-- Semester 4 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="bg-gradient-to-r from-red-500 to-red-600 text-white p-6">
<h3 class="text-2xl font-bold">📚 Semester 4 - Systems & Database</h3>
<p class="text-red-100">Embedded systems, algorithms, and database management</p>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem4/MC" class="text-blue-600 hover:text-blue-800">🔧 Microcontrollers</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Embedded systems programming</p>
<div class="flex flex-wrap gap-1">
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded text-xs">Assembly</span>
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded text-xs">Hardware</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem4/ADA" class="text-blue-600 hover:text-blue-800">🧠 ADA</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Analysis & Design of Algorithms</p>
<div class="flex flex-wrap gap-1">
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">Complexity</span>
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">Design</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem4/SQL" class="text-blue-600 hover:text-blue-800">🗄️ SQL</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Database management</p>
<div class="flex flex-wrap gap-1">
<span class="bg-indigo-100 text-indigo-800 px-2 py-1 rounded text-xs">Queries</span>
<span class="bg-indigo-100 text-indigo-800 px-2 py-1 rounded text-xs">Design</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem4/UIUX" class="text-blue-600 hover:text-blue-800">🎨 UI/UX</a>
</h4>
<p class="text-gray-600 text-sm mb-2">User Interface & Experience</p>
<div class="flex flex-wrap gap-1">
<span class="bg-pink-100 text-pink-800 px-2 py-1 rounded text-xs">Design</span>
<span class="bg-pink-100 text-pink-800 px-2 py-1 rounded text-xs">UX</span>
</div>
</div>
</div>
</div>
</div>
<!-- Semester 5 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="bg-gradient-to-r from-indigo-500 to-indigo-600 text-white p-6">
<h3 class="text-2xl font-bold">📚 Semester 5 - Networks & Web Technologies</h3>
<p class="text-indigo-100">Network programming and modern web development</p>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem5/CN" class="text-blue-600 hover:text-blue-800">🌐 Computer Networks</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Network programming and simulation</p>
<div class="flex flex-wrap gap-1">
<span class="bg-pink-100 text-pink-800 px-2 py-1 rounded text-xs">TCL</span>
<span class="bg-pink-100 text-pink-800 px-2 py-1 rounded text-xs">NS2/NS3</span>
<span class="bg-pink-100 text-pink-800 px-2 py-1 rounded text-xs">Protocols</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem5/Web" class="text-blue-600 hover:text-blue-800">🌍 Web Development</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Full-stack web development</p>
<div class="flex flex-wrap gap-1">
<span class="bg-red-100 text-red-800 px-2 py-1 rounded text-xs">HTML5</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">CSS3</span>
<span class="bg-yellow-100 text-yellow-800 px-2 py-1 rounded text-xs">JavaScript</span>
</div>
</div>
</div>
</div>
</div>
<!-- Semester 6 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="bg-gradient-to-r from-emerald-500 to-emerald-600 text-white p-6">
<h3 class="text-2xl font-bold">📚 Semester 6 - Advanced Topics</h3>
<p class="text-emerald-100">AI/ML, DevOps, and Cloud Computing</p>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem6/ML" class="text-blue-600 hover:text-blue-800">🤖 Machine Learning</a>
</h4>
<p class="text-gray-600 text-sm mb-2">AI and data science</p>
<div class="flex flex-wrap gap-1">
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">Python</span>
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs">Jupyter</span>
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">sklearn</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem6/DevOps" class="text-blue-600 hover:text-blue-800">🚀 DevOps</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Software development lifecycle</p>
<div class="flex flex-wrap gap-1">
<span class="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs">Gradle</span>
<span class="bg-red-100 text-red-800 px-2 py-1 rounded text-xs">Jenkins</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">Docker</span>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<h4 class="font-bold text-lg mb-2">
<a href="./Sem6/CC" class="text-blue-600 hover:text-blue-800">☁️ Cloud Computing</a>
</h4>
<p class="text-gray-600 text-sm mb-2">Cloud technologies</p>
<div class="flex flex-wrap gap-1">
<span class="bg-gray-100 text-gray-800 px-2 py-1 rounded text-xs">Distributed</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">Services</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Key Features Section -->
<section class="mb-8">
<h2 class="text-3xl font-bold text-cs-blue mb-6">🌟 Key Features</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<div class="text-4xl mb-4">🧠</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Machine Learning</h3>
<p class="text-gray-600">Complete ML pipeline from data preprocessing to model deployment</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<div class="text-4xl mb-4">🌐</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Web Development</h3>
<p class="text-gray-600">Modern, responsive web applications with best practices</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<div class="text-4xl mb-4">⚙️</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">System Programming</h3>
<p class="text-gray-600">Low-level programming and system optimization</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<div class="text-4xl mb-4">🚀</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">DevOps</h3>
<p class="text-gray-600">CI/CD pipelines and automated deployment strategies</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<div class="text-4xl mb-4">🔌</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Hardware Design</h3>
<p class="text-gray-600">Digital circuits and embedded systems programming</p>
</div>
<div class="bg-white rounded-lg shadow-md p-6 text-center">
<div class="text-4xl mb-4">📊</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Data Science</h3>
<p class="text-gray-600">Statistical analysis and data visualization techniques</p>
</div>
</div>
</section>
<!-- Quick Navigation -->
<section class="mb-8">
<h2 class="text-3xl font-bold text-cs-blue mb-6">🧭 Quick Navigation</h2>
<div class="bg-white rounded-lg shadow-md p-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<a href="./README.md" class="text-center p-4 border rounded-lg hover:bg-gray-50 transition-colors">
<div class="text-2xl mb-2">📖</div>
<div class="font-medium">README</div>
</a>
<a href="./Sem6/ML" class="text-center p-4 border rounded-lg hover:bg-gray-50 transition-colors">
<div class="text-2xl mb-2">🤖</div>
<div class="font-medium">ML Projects</div>
</a>
<a href="./Sem5/Web" class="text-center p-4 border rounded-lg hover:bg-gray-50 transition-colors">
<div class="text-2xl mb-2">🌐</div>
<div class="font-medium">Web Apps</div>
</a>
<a href="./Sem3/Java" class="text-center p-4 border rounded-lg hover:bg-gray-50 transition-colors">
<div class="text-2xl mb-2">☕</div>
<div class="font-medium">Java Code</div>
</a>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-white shadow-lg border-t-4 border-cs-blue mt-12">
<div class="container mx-auto px-6 py-8 text-center">
<div class="mb-4">
<h3 class="text-xl font-bold text-cs-blue mb-2">🎓 Cambridge Institute of Technology</h3>
<p class="text-gray-600">Computer Science Engineering • Academic Portfolio</p>
</div>
<div class="text-sm text-gray-500">
<p>📊 Repository Statistics: 6 Semesters • 15+ Subjects • 10+ Programming Languages • 200+ Programs</p>
<p class="mt-2">🚀 Showcasing progression from programming fundamentals to advanced CS topics</p>
</div>
</div>
</footer>
</body>
</html>