-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobbie.html
More file actions
625 lines (555 loc) · 27.2 KB
/
hobbie.html
File metadata and controls
625 lines (555 loc) · 27.2 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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Programming Questions</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--primary: #6366f1;
--primary-light: #a5b4fc;
--dark: #1e293b;
--light: #f8fafc;
--gray: #94a3b8;
--gray-light: #e2e8f0;
--accent: #f59e0b;
}
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
}
/* Single slider container */
.slider-container {
width: 100%;
height: 200px;
overflow: hidden;
position: relative;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
margin: 20px auto 30px;
max-width: 800px;
}
.slider {
display: flex;
width: 500%;
height: 100%;
animation: slide 20s infinite;
}
.slide {
width: 20%;
height: 100%;
background-size: cover;
background-position: center;
}
.slide1 { background-image: url('https://images.pexels.com/photos/3184644/pexels-photo-3184644.jpeg'); }
.slide2 { background-image: url('https://images.pexels.com/photos/4143799/pexels-photo-4143799.jpeg'); }
.slide3 { background-image: url('https://images.pexels.com/photos/5212336/pexels-photo-5212336.jpeg'); }
.slide4 { background-image: url('https://images.pexels.com/photos/7973205/pexels-photo-7973205.jpeg'); }
.slide5 { background-image: url('https://images.pexels.com/photos/4144224/pexels-photo-4144224.jpeg'); }
@keyframes slide {
0% { transform: translateX(0); }
15% { transform: translateX(0); }
20% { transform: translateX(-20%); }
35% { transform: translateX(-20%); }
40% { transform: translateX(-40%); }
55% { transform: translateX(-40%); }
60% { transform: translateX(-60%); }
75% { transform: translateX(-60%); }
80% { transform: translateX(-80%); }
95% { transform: translateX(-80%); }
100% { transform: translateX(0); }
}
.main-content {
animation: fadeInUp 0.6s ease-out forwards;
padding: 20px;
max-width: 800px;
margin: 0 auto;
box-sizing: border-box;
}
.container {
background-color: white;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
overflow: hidden;
transform: translateY(0);
opacity: 1;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
.container:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.section {
padding: 20px 24px;
border-bottom: 1px solid var(--gray-light);
cursor: pointer;
transition: all 0.3s ease;
position: relative;
}
.section:hover {
background-color: rgba(248, 250, 252, 0.6);
}
.section:last-child {
border-bottom: none;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0;
}
.section-title {
font-size: 18px;
font-weight: 600;
color: var(--dark);
display: flex;
align-items: center;
gap: 12px;
flex-grow: 1;
}
.section-icon {
width: 36px;
height: 36px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
color: white;
font-weight: bold;
flex-shrink: 0;
}
.questions-container {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.question {
padding: 14px 0 14px 48px;
font-size: 15px;
color: var(--dark);
position: relative;
line-height: 1.5;
opacity: 0;
transform: translateX(-10px);
transition: all 0.3s ease;
transition-delay: 0.1s;
}
.question:before {
content: "";
position: absolute;
left: 28px;
top: 22px;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: var(--accent);
}
.question-label {
display: inline-block;
font-weight: 600;
margin-right: 8px;
color: var(--primary);
}
.divider {
height: 1px;
background-color: var(--gray-light);
margin: 0 24px;
transition: all 0.3s ease;
}
.arrow {
display: inline-block;
margin-left: 10px;
transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
color: var(--primary);
font-weight: bold;
flex-shrink: 0;
}
.expanded {
background-color: rgba(248, 250, 252, 0.8);
}
.expanded .arrow {
transform: rotate(90deg);
}
.expanded .questions-container {
max-height: 1000px;
}
.expanded .question {
opacity: 1;
transform: translateX(0);
}
.expanded + .divider {
opacity: 0;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Single footer section */
.footer {
text-align: center;
margin-top: 40px;
padding: 20px 0;
color: var(--gray);
font-size: 14px;
}
.footer a {
color: var(--primary);
text-decoration: none;
font-weight: 600;
}
@media (max-width: 768px) {
.main-content {
padding: 15px;
}
.slider-container {
height: 150px;
border-radius: 12px;
margin-bottom: 20px;
}
.section {
padding: 16px 18px;
}
.section-title {
font-size: 16px;
gap: 10px;
}
.section-icon {
width: 32px;
height: 32px;
font-size: 14px;
}
.question {
padding: 12px 0 12px 40px;
font-size: 14px;
}
.question:before {
left: 24px;
top: 18px;
}
.divider {
margin: 0 18px;
}
}
@media (max-width: 480px) {
.slider-container {
height: 120px;
border-radius: 10px;
}
.section-title {
font-size: 15px;
}
.section-icon {
width: 28px;
height: 28px;
}
.question {
padding: 10px 0 10px 36px;
}
.question:before {
left: 20px;
top: 16px;
width: 6px;
height: 6px;
}
}
</style>
</head>
<body>
<div class="main-content">
<!-- Single slider section -->
<div class="slider-container">
<div class="slider">
<div class="slide slide1"></div>
<div class="slide slide2"></div>
<div class="slide slide3"></div>
<div class="slide slide4"></div>
<div class="slide slide5"></div>
</div>
</div>
<div class="container">
<!-- Extracurricular Activities -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
What extracurricular activities are you involved in?
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
I am involved in coding competitions, hackathons, and community service activities. I also actively participate in online tech forums and content creation related to software development and AI.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
Main coding competitions, hackathons, aur community service activities mein involved hoon. Main online tech forums aur software development aur AI se related content creation mein bhi actively participate karta hoon.
</div>
</div>
</div>
<div class="divider"></div>
<!-- Team Leadership -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
Have you ever led a team in an event or competition?
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
Yes, I have led a team in a regional coding competition where we developed a web application in 48 hours. It was a challenging yet rewarding experience that taught me valuable leadership and teamwork skills.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
Haan, maine ek regional coding competition mein team lead ki thi jaha humne 48 ghanto mein ek web application develop kiya tha. Ye ek challenging par rewarding experience tha, jisme maine leadership aur teamwork skills seekhi.
</div>
</div>
</div>
<div class="divider"></div>
<!-- Hobby or Skill -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
Tell me about a hobby or skill you've developed over the years.
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
Over the years, I've developed a strong interest in game development. I've learned programming languages like C++ and Unity to create my own games, and this hobby has helped me develop problem-solving and creativity.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
Mainne apne saalon ke dauran game development mein strong interest develop kiya hai. Maine programming languages jaise C++ aur Unity seekhi hain apne games banane ke liye, aur is hobby ne mujhe problem-solving aur creativity ko enhance karne mein madad ki hai.
</div>
</div>
</div>
<div class="divider"></div>
<!-- Non-academic Projects -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
Have you worked on any non-academic projects?
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
Yes, I've worked on several non-academic projects, including building a personal blog to share coding tutorials and creating an app for local businesses to help them manage their inventory.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
Haan, maine kai non-academic projects par kaam kiya hai, jisme ek personal blog banaya tha coding tutorials share karne ke liye, aur local businesses ke liye ek app banaya tha jisse unhe apne inventory manage karne mein madad mil sake.
</div>
</div>
</div>
<div class="divider"></div>
<!-- Hobbies and Interests -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
What are your hobbies and interests?
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
My hobbies include coding, reading tech blogs, playing video games, and learning new programming languages. I am also interested in AI and machine learning and enjoy keeping up with the latest advancements in these fields.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
Meri hobbies mein coding, tech blogs padhna, video games khelna, aur naye programming languages seekhna shamil hai. Main AI aur machine learning mein bhi interested hoon aur unke latest advancements ke saath updated rehna pasand karta hoon.
</div>
</div>
</div>
<div class="divider"></div>
<!-- Balancing Hobbies and Academics -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
How do you balance your hobbies with academics?
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
I balance my hobbies and academics by creating a strict timetable that includes time for both. I prioritize my academic responsibilities while making sure I spend time on hobbies that help me grow personally and professionally.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
Main apni hobbies aur academics ko ek strict timetable bana kar balance karta hoon, jisme dono ke liye time rakha jata hai. Main apni academic responsibilities ko priority deta hoon, saath hi apni personal aur professional growth ke liye hobbies pe bhi time spend karta hoon.
</div>
</div>
</div>
<div class="divider"></div>
<!-- Most Dedicated Hobby -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
What hobby or skill have you dedicated the most time to?
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
The hobby I have dedicated the most time to is coding. I have spent countless hours learning different programming languages, working on projects, and taking online courses to improve my coding skills.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
Maine sabse zyada time coding ke liye dedicate kiya hai. Maine kai ghante alag-alag programming languages seekhne, projects par kaam karne, aur online courses lene mein bitaye hain apni coding skills ko improve karne ke liye.
</div>
</div>
</div>
<div class="divider"></div>
<!-- Personal Projects -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
Have you worked on any personal projects outside of academics?
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
Yes, I've worked on several personal projects outside of academics. One notable project was creating a mobile app for managing personal finances, which helped me apply my development skills in a real-world scenario.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
Haan, maine kai personal projects par kaam kiya hai jo academics ke outside the. Ek notable project tha personal finances manage karne ke liye ek mobile app banana, jo mujhe apni development skills ko real-world scenario mein apply karne ka mauka mila.
</div>
</div>
</div>
<div class="divider"></div>
<!-- New Skill Learning -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
What new skill or hobby are you currently learning?
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
Currently, I am learning machine learning and data science through online courses and projects. I'm particularly focused on improving my skills in building predictive models and analyzing data.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
Filhal, main machine learning aur data science seekh raha hoon online courses aur projects ke through. Mera focus is waqt predictive models banane aur data analyze karne ki skills ko improve karne par hai.
</div>
</div>
</div>
<div class="divider"></div>
<!-- Recent Technologies -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
Tell me about five recent technologies you know.
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
<strong>5G Technology:</strong> 5G offers faster internet speeds and reduced latency, enabling new possibilities in IoT, autonomous vehicles, and smart cities.<br>
<strong>Quantum Computing:</strong> This technology uses quantum bits to perform computations at speeds far beyond classical computers, with applications in cryptography, medicine, and optimization.<br>
<strong>Blockchain Technology:</strong> Blockchain ensures secure, transparent transactions, mainly used in cryptocurrencies but now expanding into supply chain management and voting systems.<br>
<strong>Edge Computing:</strong> By processing data closer to the source, edge computing reduces latency and bandwidth usage, enabling real-time decision-making in applications like autonomous vehicles and smart factories.<br>
<strong>Augmented Reality (AR) and Virtual Reality (VR):</strong> AR and VR are transforming industries such as gaming, education, and healthcare by providing immersive experiences for users.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
<strong>5G Technology:</strong> 5G faster internet speeds aur kam latency offer karta hai, jisse IoT, autonomous vehicles, aur smart cities mein naye possibilities khul rahe hain.<br>
<strong>Quantum Computing:</strong> Ye technology quantum bits ka use karti hai jo classical computers se kai zyada speed pe computations karte hain, aur cryptography, medicine aur optimization mein use ho rahi hai.<br>
<strong>Blockchain Technology:</strong> Blockchain secure aur transparent transactions ensure karta hai, jo pehle cryptocurrencies mein use hoti thi, ab supply chain management aur voting systems mein bhi use ho rahi hai.<br>
<strong>Edge Computing:</strong> Data ko source ke paas process karne se edge computing latency aur bandwidth usage ko reduce karta hai, jo autonomous vehicles aur smart factories jaise applications mein real-time decision-making enable karta hai.<br>
<strong>Augmented Reality (AR) and Virtual Reality (VR):</strong> AR aur VR gaming, education, aur healthcare industries ko transform kar rahe hain, users ko immersive experiences provide karte hue.
</div>
</div>
</div>
<div class="divider"></div>
<!-- AI Advancements -->
<div class="section" onclick="toggleSection(this)">
<div class="section-header">
<div class="section-title">
<div class="section-icon">Q</div>
Tell me about two recent advancements in AI that you know.
<span class="arrow">›</span>
</div>
</div>
<div class="questions-container">
<div class="question">
<span class="question-label">English:</span>
<strong>GPT-4:</strong> The release of GPT-4, the latest iteration of OpenAI's language model, has improved natural language understanding and generation. It's better at reasoning, creativity, and nuanced conversation.<br>
<strong>AI in Healthcare:</strong> AI advancements in healthcare have led to innovations like AI-powered diagnostic tools that can detect diseases from medical images more accurately than human doctors, improving diagnosis speed and accuracy.
</div>
<div class="question">
<span class="question-label">Hinglish:</span>
<strong>GPT-4:</strong> GPT-4 ka release, jo OpenAI ka latest language model hai, natural language understanding aur generation mein improvement laata hai. Ye reasoning, creativity, aur nuanced conversation mein bhi behtar ho gaya hai.<br>
<strong>AI in Healthcare:</strong> Healthcare mein AI ki advancements se aise AI-powered diagnostic tools aaye hain jo medical images se diseases ko human doctors se zyada accurately detect kar sakte hain, jis se diagnosis ki speed aur accuracy improve hui hai.
</div>
</div>
</div>
</div>
<!-- Single footer section -->
<div class="footer">
© 2025 BY <a href="https://www.youtube.com/@CodeXAmn" target="_blank">DYHARD</a> | Newton's School Of Technology
</div>
</div>
<script>
function toggleSection(section) {
const wasExpanded = section.classList.contains('expanded');
if (!wasExpanded) {
document.querySelectorAll('.section').forEach(sec => {
sec.classList.remove('expanded');
});
}
section.classList.toggle('expanded');
const questions = section.querySelectorAll('.question');
questions.forEach((q, i) => {
q.style.transitionDelay = `${i * 0.1}s`;
});
if (!wasExpanded) {
setTimeout(() => {
section.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
}, 100);
}
}
document.addEventListener('DOMContentLoaded', () => {
const container = document.querySelector('.main-content');
setTimeout(() => {
container.style.opacity = 1;
container.style.transform = 'translateY(0)';
}, 100);
});
</script>
</body>
</html>