-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
433 lines (378 loc) · 13.7 KB
/
index.html
File metadata and controls
433 lines (378 loc) · 13.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data Science Learning Hub</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Fira+Code&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/common.css">
<style>
/* Hero Section Styles */
.hero-section {
position: relative;
z-index: 1;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
margin: 40px auto;
max-width: 1400px;
border-radius: 30px;
padding: 80px 60px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
display: flex;
align-items: center;
justify-content: space-between;
gap: 60px;
}
.hero-content {
flex: 1;
max-width: 650px;
}
.hero-content h1 {
font-size: 4rem;
font-weight: 800;
line-height: 1.1;
margin-bottom: 30px;
color: #1a1a1a;
}
.hero-content .highlight {
background: linear-gradient(135deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-content p {
font-size: 1.25rem;
line-height: 1.7;
color: #666;
margin-bottom: 40px;
}
.hero-buttons {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.hero-btn {
padding: 15px 35px;
font-size: 1.1rem;
font-weight: 600;
border-radius: 12px;
text-decoration: none;
transition: all 0.3s;
display: inline-block;
}
.hero-btn.primary {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.hero-btn.primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}
.hero-btn.secondary {
background: rgba(102, 126, 234, 0.1);
color: #667eea;
border: 2px solid #667eea;
}
.hero-btn.secondary:hover {
background: rgba(102, 126, 234, 0.2);
transform: translateY(-3px);
}
.hero-image {
flex: 0 0 400px;
display: flex;
align-items: center;
justify-content: center;
}
.hero-image img {
max-width: 100%;
height: auto;
filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
animation: float-image 6s ease-in-out infinite;
}
@keyframes float-image {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
/* Container for cards */
.container {
position: relative;
z-index: 1;
max-width: 1400px;
margin: 0 auto;
padding: 40px 20px;
}
.section-header {
text-align: center;
margin-bottom: 60px;
}
.section-header h2 {
font-size: 2.5rem;
font-weight: 800;
color: white;
margin-bottom: 15px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.section-header p {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9);
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
margin-bottom: 60px;
}
.card {
background: rgba(255, 255, 255, 0.98);
border-radius: 20px;
padding: 40px;
color: #2a2a2a;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
cursor: pointer;
position: relative;
overflow: hidden;
animation: cardAppear 0.6s ease-out both;
text-decoration: none;
display: block;
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
@keyframes cardAppear {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.1) 100%);
opacity: 0;
transition: opacity 0.4s ease;
}
.card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.card:hover::before {
opacity: 1;
}
.card-icon {
font-size: 3.5rem;
margin-bottom: 20px;
display: block;
transition: transform 0.4s ease;
}
.card:hover .card-icon {
transform: scale(1.2) rotate(5deg);
}
.card h3 {
font-size: 1.8rem;
margin-bottom: 15px;
color: #1a1a1a;
}
.card p {
font-size: 1rem;
line-height: 1.6;
color: #666;
margin-bottom: 20px;
}
.card-badge {
display: inline-block;
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
margin-top: 10px;
}
.status {
position: absolute;
top: 20px;
right: 20px;
padding: 5px 12px;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
}
.status.ready {
background: #4CAF50;
color: white;
}
/* Responsive */
@media (max-width: 1024px) {
.hero-section {
flex-direction: column;
padding: 60px 40px;
text-align: center;
}
.hero-content {
max-width: 100%;
}
.hero-image {
flex: 0 0 300px;
}
.hero-buttons {
justify-content: center;
}
}
@media (max-width: 768px) {
.hero-section {
margin: 20px;
padding: 40px 30px;
}
.hero-content h1 {
font-size: 2.5rem;
}
.hero-content p {
font-size: 1.1rem;
}
.hero-image {
flex: 0 0 250px;
}
.cards-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.card {
padding: 30px;
}
}
</style>
</head>
<body>
<div class="particles" id="particles"></div>
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="nav-brand">📚 Learning Hub</a>
<div class="nav-links">
<a href="python-notes.html">Python</a>
<a href="numpy-notes.html">NumPy</a>
<a href="pandas-notes.html">Pandas</a>
<a href="sql-notes.html">SQL</a>
<a href="statistics-notes.html">Statistics</a>
<a href="about.html">About</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-content">
<h1>Transform Your <span class="highlight">Data Science</span> Skills</h1>
<p>Master the fundamentals with interactive guides. Learn Python, NumPy, Pandas, and SQL through comprehensive tutorials designed for practical learning.</p>
<div class="hero-buttons">
<a href="#courses" class="hero-btn primary">Start Learning</a>
<!-- <a href="about.html" class="hero-btn secondary">About This Hub</a> -->
</div>
</div>
<div class="hero-image">
<!-- Replace 'your-image.png' with your actual image path -->
<img src="data macsot.png" alt="Data Science Learning">
</div>
</section>
<div class="container">
<div class="section-header" id="courses">
<h2>📖 Available Notes</h2>
<p>Choose your learning path and start mastering data science</p>
</div>
<div class="cards-grid">
<a href="python-notes.html" class="card">
<span class="status ready">Ready</span>
<span class="card-icon">🐍</span>
<h3>Python Basics</h3>
<p>Learn Python fundamentals: variables, data types, control flow, functions, and object-oriented programming.</p>
<span class="card-badge">Beginner Friendly</span>
</a>
<a href="numpy-notes.html" class="card">
<span class="status ready">Ready</span>
<span class="card-icon">🔢</span>
<h3>NumPy</h3>
<p>Master numerical computing with arrays, broadcasting, linear algebra, and efficient data operations.</p>
<span class="card-badge">Essential for ML</span>
</a>
<a href="pandas-notes.html" class="card">
<span class="status ready">Ready</span>
<span class="card-icon">🐼</span>
<h3>Pandas</h3>
<p>Data manipulation and analysis with DataFrames, Series, grouping, merging, and time series.</p>
<span class="card-badge">Data Wrangling</span>
</a>
<a href="sql-notes.html" class="card">
<span class="status ready">Ready</span>
<span class="card-icon">🗄️</span>
<h3>SQL</h3>
<p>Database querying essentials: SELECT, JOIN, aggregations, subqueries, and database design.</p>
<span class="card-badge">Database Power</span>
</a>
<a href="statistics-notes.html" class="card">
<span class="status ready">Ready</span>
<span class="card-icon">🔢</span>
<h3>statistics</h3>
<p>Master numerical computing with arrays, broadcasting, linear algebra, and efficient data operations.</p>
<span class="card-badge">Essential for ML</span>
</a>
</div>
</div>
<footer class="footer">
<div class="footer-container">
<div class="footer-section">
<h3>📚 Learning Hub</h3>
<p>A comprehensive platform for mastering data science fundamentals. Built with passion for learners everywhere.</p>
<div class="social-links">
<a href="https://github.com/Developer-Sahil/" title="GitHub">💻</a>
<a href="https://www.linkedin.com/in/sahil-sharma-921969239/" title="LinkedIn">💼</a>
<!-- <a href="#" title="Twitter">🐦</a> -->
<a href="[email protected]" title="Email">📧</a>
</div>
</div>
<div class="footer-section">
<h3>🎓 Topics</h3>
<ul>
<li><a href="python-notes.html">Python Basics</a></li>
<li><a href="numpy-notes.html">NumPy</a></li>
<li><a href="pandas-notes.html">Pandas</a></li>
<li><a href="sql-notes.html">SQL</a></li>
<li><a href="statistics-notes.html">Statistics</a></li>
</ul>
</div>
<div class="footer-section">
<h3>🔗 Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="#" onclick="window.scrollTo({top: 0, behavior: 'smooth'}); return false;">Back to Top</a></li>
</ul>
</div>
<div class="footer-section">
<h3>💡 Resources</h3>
<ul>
<li><a href="https://docs.python.org/" target="_blank">Python Docs</a></li>
<li><a href="https://numpy.org/doc/" target="_blank">NumPy Docs</a></li>
<li><a href="https://pandas.pydata.org/docs/" target="_blank">Pandas Docs</a></li>
<li><a href="https://www.w3schools.com/sql/" target="_blank">SQL Tutorial</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Data Science Learning Hub. Built by Sahil Sharma for learners everywhere.</p>
<p>Open source educational project • <a href="about.html">Learn more about the creator</a></p>
</div>
</footer>
<script src="js/common.js"></script>
</body>
</html>