Rahul0505 commited on
Commit
12b9213
·
verified ·
1 Parent(s): 78e611a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +182 -4
index.html CHANGED
@@ -59,6 +59,7 @@
59
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
60
  border: 1px solid #f3f4f6;
61
  animation: fadeInUp 1s ease-out 0.3s both;
 
62
  }
63
  .tech-stack-section h2 {
64
  text-align: center;
@@ -183,6 +184,104 @@
183
  letter-spacing: 1px;
184
  font-weight: 600;
185
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
  @keyframes float {
187
  0%, 100% { transform: translateY(0px); }
188
  50% { transform: translateY(-20px); }
@@ -237,14 +336,17 @@
237
  .header .subtitle {
238
  font-size: 1.2rem;
239
  }
240
- .tech-stack-section {
241
  padding: 30px 20px;
242
  }
243
  .tech-grid {
244
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
245
  gap: 20px;
246
  }
247
- .tech-stack-section h2 {
 
 
 
248
  font-size: 2rem;
249
  }
250
  .tech-stack-section h2 img {
@@ -264,7 +366,7 @@
264
 
265
  <div class="tech-stack-section">
266
  <h2>
267
- <img src="https://huggingface.co/spaces/TheCodingClub-RVCE/README/resolve/main/logo.jpeg" alt="Coding Club Logo">
268
  Our Tech Stack
269
  </h2>
270
  <p class="description">
@@ -341,6 +443,82 @@
341
  </div>
342
  </div>
343
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
  <div class="footer">
345
  <p>🎓 RV College of Engineering | Bengaluru, Karnataka</p>
346
  <p style="margin-top: 15px;">
@@ -398,4 +576,4 @@
398
  });
399
  </script>
400
  </body>
401
- </html>
 
59
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
60
  border: 1px solid #f3f4f6;
61
  animation: fadeInUp 1s ease-out 0.3s both;
62
+ margin-bottom: 40px;
63
  }
64
  .tech-stack-section h2 {
65
  text-align: center;
 
184
  letter-spacing: 1px;
185
  font-weight: 600;
186
  }
187
+
188
+ /* Resources Section Styles */
189
+ .resources-section {
190
+ background: white;
191
+ border-radius: 24px;
192
+ padding: 50px 40px;
193
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
194
+ border: 1px solid #f3f4f6;
195
+ animation: fadeInUp 1s ease-out 0.5s both;
196
+ margin-bottom: 40px;
197
+ }
198
+ .resources-section h2 {
199
+ text-align: center;
200
+ font-size: 2.5rem;
201
+ color: #1f2937;
202
+ margin-bottom: 20px;
203
+ font-weight: 700;
204
+ }
205
+ .resources-section .description {
206
+ text-align: center;
207
+ color: #6b7280;
208
+ font-size: 1.1rem;
209
+ margin-bottom: 50px;
210
+ max-width: 700px;
211
+ margin-left: auto;
212
+ margin-right: auto;
213
+ }
214
+ .resources-grid {
215
+ display: grid;
216
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
217
+ gap: 25px;
218
+ }
219
+ .resource-card {
220
+ background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
221
+ border: 2px solid #e5e7eb;
222
+ border-radius: 16px;
223
+ padding: 30px;
224
+ transition: all 0.3s ease;
225
+ cursor: pointer;
226
+ position: relative;
227
+ overflow: hidden;
228
+ }
229
+ .resource-card::before {
230
+ content: '';
231
+ position: absolute;
232
+ top: 0;
233
+ left: 0;
234
+ width: 4px;
235
+ height: 100%;
236
+ background: linear-gradient(180deg, #ff9d00, #ffb347);
237
+ transform: scaleY(0);
238
+ transition: transform 0.3s ease;
239
+ }
240
+ .resource-card:hover::before {
241
+ transform: scaleY(1);
242
+ }
243
+ .resource-card:hover {
244
+ transform: translateX(8px);
245
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
246
+ border-color: #ff9d00;
247
+ }
248
+ .resource-icon {
249
+ width: 50px;
250
+ height: 50px;
251
+ background: linear-gradient(135deg, #ff9d00, #ffb347);
252
+ border-radius: 12px;
253
+ display: flex;
254
+ align-items: center;
255
+ justify-content: center;
256
+ margin-bottom: 20px;
257
+ font-size: 1.8rem;
258
+ }
259
+ .resource-title {
260
+ font-size: 1.4rem;
261
+ font-weight: 700;
262
+ color: #1f2937;
263
+ margin-bottom: 10px;
264
+ }
265
+ .resource-description {
266
+ color: #6b7280;
267
+ font-size: 0.95rem;
268
+ line-height: 1.6;
269
+ margin-bottom: 15px;
270
+ }
271
+ .resource-link {
272
+ display: inline-flex;
273
+ align-items: center;
274
+ gap: 8px;
275
+ color: #ff9d00;
276
+ font-weight: 600;
277
+ font-size: 0.9rem;
278
+ text-decoration: none;
279
+ transition: gap 0.3s ease;
280
+ }
281
+ .resource-link:hover {
282
+ gap: 12px;
283
+ }
284
+
285
  @keyframes float {
286
  0%, 100% { transform: translateY(0px); }
287
  50% { transform: translateY(-20px); }
 
336
  .header .subtitle {
337
  font-size: 1.2rem;
338
  }
339
+ .tech-stack-section, .resources-section {
340
  padding: 30px 20px;
341
  }
342
  .tech-grid {
343
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
344
  gap: 20px;
345
  }
346
+ .resources-grid {
347
+ grid-template-columns: 1fr;
348
+ }
349
+ .tech-stack-section h2, .resources-section h2 {
350
  font-size: 2rem;
351
  }
352
  .tech-stack-section h2 img {
 
366
 
367
  <div class="tech-stack-section">
368
  <h2>
369
+ <img src="logo.jpeg" alt="Coding Club Logo">
370
  Our Tech Stack
371
  </h2>
372
  <p class="description">
 
443
  </div>
444
  </div>
445
 
446
+ <!-- Resources Section -->
447
+ <div class="resources-section">
448
+ <h2>Learning Resources</h2>
449
+ <p class="description">
450
+ Curated courses and materials to help you master machine learning and AI
451
+ </p>
452
+
453
+ <div class="resources-grid">
454
+ <div class="resource-card">
455
+ <div class="resource-icon">ML</div>
456
+ <div class="resource-title">Machine Learning Specialization</div>
457
+ <div class="resource-description">
458
+ Stanford & DeepLearning.AI's comprehensive introduction to machine learning fundamentals by Andrew Ng.
459
+ </div>
460
+ <a href="https://www.coursera.org/specializations/machine-learning-introduction" class="resource-link" target="_blank">
461
+ Start Learning →
462
+ </a>
463
+ </div>
464
+
465
+ <div class="resource-card">
466
+ <div class="resource-icon">DL</div>
467
+ <div class="resource-title">Deep Learning Specialization</div>
468
+ <div class="resource-description">
469
+ Master neural networks, CNNs, RNNs, and transformers with DeepLearning.AI's flagship program.
470
+ </div>
471
+ <a href="https://www.coursera.org/specializations/deep-learning" class="resource-link" target="_blank">
472
+ Enroll Now →
473
+ </a>
474
+ </div>
475
+
476
+ <div class="resource-card">
477
+ <div class="resource-icon">AI</div>
478
+ <div class="resource-title">Open Machine Learning Course</div>
479
+ <div class="resource-description">
480
+ Hands-on practice with real-world ML problems, algorithms, and Python implementations.
481
+ </div>
482
+ <a href="https://mlcourse.ai/book/index.html" class="resource-link" target="_blank">
483
+ Practice Now →
484
+ </a>
485
+ </div>
486
+
487
+ <div class="resource-card">
488
+ <div class="resource-icon">KG</div>
489
+ <div class="resource-title">Kaggle Learn</div>
490
+ <div class="resource-description">
491
+ Interactive tutorials and competitions for practical machine learning and data science skills.
492
+ </div>
493
+ <a href="https://www.kaggle.com/learn" class="resource-link" target="_blank">
494
+ Start Competing →
495
+ </a>
496
+ </div>
497
+
498
+ <div class="resource-card">
499
+ <div class="resource-icon">CC</div>
500
+ <div class="resource-title">Coding Club AI/ML Handbook</div>
501
+ <div class="resource-description">
502
+ Our comprehensive guide covering ML fundamentals, deep learning, and best practices for RVCE students.
503
+ </div>
504
+ <a href="https://github.com/codingclubrvce/AI-ML-101" class="resource-link" target="_blank">
505
+ Access Handbook →
506
+ </a>
507
+ </div>
508
+
509
+ <div class="resource-card">
510
+ <div class="resource-icon">HF</div>
511
+ <div class="resource-title">Our Models & Datasets</div>
512
+ <div class="resource-description">
513
+ Explore projects, pre-trained models, and datasets created by Coding Club members on Hugging Face.
514
+ </div>
515
+ <a href="https://huggingface.co/TheCodingClub-RVCE" class="resource-link" target="_blank">
516
+ View Collection →
517
+ </a>
518
+ </div>
519
+ </div>
520
+ </div>
521
+
522
  <div class="footer">
523
  <p>🎓 RV College of Engineering | Bengaluru, Karnataka</p>
524
  <p style="margin-top: 15px;">
 
576
  });
577
  </script>
578
  </body>
579
+ </html>