-
Notifications
You must be signed in to change notification settings - Fork 60
/
index.html
622 lines (590 loc) · 24.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OCD Website</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="icon" type="image/x-icon" href="./public/ocdlogo.png" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link rel="stylesheet" href="./styles/style.css" />
</head>
<body>
<!-- Navbar -->
<nav>
<div class="nav-content">
<button class="nav-toggle" id="nav-toggle">
<i class="fas fa-bars"></i>
</button>
<div class="nav-left">
<a href="index.html" class="logo-link">
<img class="logo" src="./public/ocdlogo.png" alt="OCD Logo" />
</a>
<div class="nav-text"><a href="#"><Home></a></div>
<div class="nav-text"><a href="html/learningReso.html"><Learn></a></div>
<div class="nav-text"><a href="html/events.html"><Events></a></div>
<div class="nav-text">
<a href="https://nitkurukshetra-repo.vercel.app/" title="Please use a laptop for a better experience"><NIT KKR - PYQs></a>
</div>
<div class="nav-text">
<a href="html/Resources.html"><Resources></a>
</div>
<div class="nav-text dropdown">
<a href="index.html"><Links></a>
<div class="dropdown-content">
<a href="html/contests.html"><Contest></a>
<a href="html/Blog-page.html"><Blogs></a>
<a href="html/about.html"><About Us></a>
<a href="html/contributors.html"><Contributors></a>
<a href="html/achievements.html"><Achievements></a>
<a href="html/contactUs.html"><Contact Us></a>
</div>
</div>
</div>
<div class="nav-right">
<button id="dark-mode-toggle" class="dark-mode-button">
<i class="fas fa-sun"></i>
<!-- Sun icon for light mode -->
<i class="fas fa-moon"></i>
<!-- Moon icon for dark mode -->
</button >
</div>
</nav>
<!-- Pop-up Section Start -->
<div id="popup-banner" class="popup-banner">
<span id="close-btn-popup" class="close-btn" onclick="hidepopup()"
>✘</span
>
<p id="h2-of-popup">Welcome to OCD Website !</p>
<p>
We are currently working on DSA, Competitive Programming, and a 30 Days
Java challenge. Join us and enhance your coding skills!
</p>
button for linking login page
<a href="html/join_30DayOfJs.html"
><button id="join-btn-popup">Join</button></a
>
</div>
<!-- Pop-up Section end -->
<!-- Hero Section -->
<section class="hero-section">
<h1 id="headingourprogram">OpenCode Developers Society <OCD/> Society</h1>
<div class="hero-content">
<div class="hero-text">
<p class="hero-paragraph">
<span style="background-image: linear-gradient(to right, #a30f79, #251665);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;">The OpenCode Developers {OCD}</span> society at NIT Kurukshetra is an
enthusiastic technical club that aims to boost the coding and
problem-solving abilities of its members. <OCD/> focuses on competitive
programming, data structures and algorithms (DSA), and project
building. It offers a team-based platform for students to improve
their technical know-how. The group often holds coding contests,
hackathons, and workshops. These events spark creativity and push
participants to excel. By taking part in these activities, members
hone their coding skills and get ready for various national and
international contests. <OCD/> strives to build a lively community
where up-and-coming developers can grow, share ideas, and work on
meaningful projects. This approach helps members develop personally
and advances the college's tech prowess.
</p>
</div>
<div class="hero-image">
<img src="./public/ocd-Hero.png" alt="" height="500px" width="500px">
</div>
</div>
</section>
<!-- Programs Section Start -->
<section class="programs-section">
<div class="programs-container">
<h1 id="headingourprogram"><Our Programs></h1>
<div class="programs-cards">
<div class="program-card">
<img
src="https://miro.medium.com/v2/resize:fit:1400/0*7AHKqhGVaDWZJ1L_.png"
alt="DSA Program"
class="program-photo"
/>
<div class="program-info">
<h3><DSA></h3>
<p>
Explore Data Structures and Algorithms through hands-on
challenges and tutorials.
</p>
<div class="learnMore">
<a href="https://takeuforward.org/strivers-a2z-dsa-course/strivers-a2z-dsa-course-sheet-2"
target="_blank"
class="view-demo"
>Learn More!</a>
</div>
</div>
</div>
<div class="program-card">
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQA1_b_iR2A79YQxvGPmafMwXPIlF4DbXYTfg&s"
alt="Competitive Programming"
class="program-photo"
/>
<div class="program-info">
<h3><Competitive Programming></h3>
<p>
Enhance your problem-solving skills with competitive programming
contests.
</p>
<div class="learnMore">
<a href="https://asksenior.in/learn"
target="_blank"
class="view-demo"
>Learn More!</a>
</div>
</div>
</div>
<div class="program-card">
<img
src="https://static.vecteezy.com/system/resources/previews/027/127/463/large_2x/javascript-logo-javascript-icon-transparent-free-png.png"
alt="30 Days of JavaScript"
class="program-photo"
/>
<div class="program-info">
<h3><30 Days of JavaScript></h3>
<p>
Join our 30-day JavaScript challenge to master the language with
daily exercises.
</p>
<div class="learnMore">
<a href="https://github.com/NitikaSheoran/30daysOfJsm"
target="_blank"
class="view-demo"
>Learn More!</a>
</div>
</div>
</div>
<div class="program-card">
<img
src="https://cdn.analyticsvidhya.com/wp-content/uploads/2024/01/image-201.png"
alt="Git/GitHub"
class="program-photo"
/>
<div class="program-info">
<h3><Git/Github></h3>
<p>
Learn Git and GitHub by completing challenges and tutorials.
</p>
<div class="learnMore">
<a href="https://www.freecodecamp.org/news/introduction-to-git-and-github/"
target="_blank"
class="view-demo"
>Learn More!</a>
</div>
</div>
</div>
<div class="program-card">
<img
src="https://imgs.search.brave.com/I9TBhVyGkugGkheKtJDvEdaySndIAfJ3gptS9jtUKxE/rs:fit:500:0:0:0/g:ce/aHR0cHM6Ly9pbWcu/ZnJlZXBpay5jb20v/cHJlbWl1bS1waG90/by9jb25jZXB0LWFy/dGlmaWNpYWwtaW50/ZWxsaWdlbmNlLWlz/LXN5bWJvbGl6ZWQt/YnktZGlnaXRhbC1i/cmFpbi1saW5rZWQt/Y2lyY3VpdF83NTA2/MzAtNzkxNC5qcGc_/c2l6ZT02MjYmZXh0/PWpwZw"
alt="Learn ML"
class="program-photo"
/>
<div class="program-info">
<h3><Learn ML></h3>
<p>
Dive into the world of Machine Learning with our comprehensive learning program.
</p>
<div class="learnMore">
<a href="https://www.kaggle.com/"
target="_blank"
class="view-demo"
>Learn More!</a>
</div>
</div>
</div>
<div class="program-card">
<img
src="https://imgs.search.brave.com/NUQxJPMgcffjN-6FQSMcLpSmhzojHDUDBiPu771itMQ/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly93d3cu/dzNzY2hvb2xzLmNv/bS93aGF0aXMvaW1n/X3JlYWN0LmpwZw"
alt="30 Days of React"
class="program-photo"
/>
<div class="program-info">
<h3><30 Days of React></h3>
<p>
Join our 30-day React challenge to master the library with daily exercises.
</p>
<div class="learnMore">
<a href="https://react.dev/learn"
target="_blank"
class="view-demo"
>Learn More!</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Programs Section End -->
<!-- Project Section -->
<section class="project-section">
<div class="project-container">
<h1 id="headingourprojects"><Our Projects></h1>
<div class="project-cards">
<div class="project-card">
<div class="project-info">
<h3>noterAI</h3>
<p>NoterAI helps students learn better by enabling them to take notes using a Notion-like UI, or their voice. The platform leverages AI to summarize notes, generate quizzes from notes, answer questions based on the notes, and keep students motivated with interesting facts related to their study topics.</p>
</div>
<div class="learnMore">
<a href="#" target="_blank">Learn More!</a>
</div>
</div>
<div class="project-card">
<div class="project-info">
<h3>rvector</h3>
<p>RVector is a MongoDB-inspired vector database. It is a document-based application capable of storing and retrieving vectors of any dimension. It is designed for RAG-based (Retrieval-Augmented Generation) applications, where vectors are used to represent data.</p>
</div>
<div class="learnMore">
<a href="#" target="_blank">Learn More!</a>
</div>
</div>
<div class="project-card">
<div class="project-info">
<h3>NIT KKR - PYQ</h3>
<p>Introducing our Question Paper Website built with the MERN stack! This project serves as a comprehensive platform for accessing and managing question papers at NIT Kurukshetra. Explore the features and functionality in our [KKR-Repo].
</div>
<div class="learnMore">
<a href="#" target="_blank">Learn More!</a>
</div>
</div>
<div class="project-card">
<div class="project-info">
<h3>CP Masters</h3>
<p>CPMasters is a competitive programming platform that helps users practice and improve their coding skills. It provides an environment for solving coding problems, participating in contests, and receiving feedback on solutions. The platform supports multiple programming languages and offers code execution and evaluation.</p>
</p>
</div>
<div class="learnMore">
<a href="#" target="_blank">Learn More!</a>
</div>
</div>
<div class="project-card">
<div class="project-info">
<h3>Social Media Dashboard</h3>
<p>Create an interactive dashboard with user profiles, posts, and real-time updates. Implement features such as liking posts, commenting, and following other users. This will enhance user engagement and provide a dynamic user experience.</p>
</div>
<div class="learnMore">
<a href="#" target="_blank">Learn More!</a>
</div>
</div>
<div class="project-card">
<div class="project-info">
<h3>Chat Application</h3>
<p>Build a chat application with real-time messaging and user presence features. This application will allow users to communicate with each other in real-time and see the online status of other users. It will enhance user engagement and provide a seamless communication experience.</p>
</div>
<div class="learnMore">
<a href="#" target="_blank">Learn More!</a>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section class="team-section">
<div class="team-container">
<h1 id="headingourteam"><Meet Our Team></h1>
<div class="team-cards">
<div class="team-card">
<img
src="./public/ocd-members/president.jpeg"
alt="Himanshu"
class="team-photo"
/>
<div class="team-info">
<h3><Himanshu></h3>
<p class="role">President</p>
<p class="person-info">
Himanshu is the team leader who oversees project management and
strategy. He is skilled in various technologies and has a
passion for coding.
</p>
<div class="social-icons">
<a
href="https://www.linkedin.com/in/himanshu"
target="_blank"
title="LinkedIn"
><i class="fab fa-linkedin-in"></i
></a>
<a
href="https://twitter.com/himanshu"
target="_blank"
title="Twitter"
><i class="fab fa-twitter"></i
></a>
<a
href="https://github.com/himanshu"
target="_blank"
title="GitHub"
><i class="fab fa-github"></i
></a>
</div>
</div>
</div>
<div class="team-card">
<img
src="./public/ocd-members/vice-president.png"
alt="Rahul Kumar"
class="team-photo"
/>
<div class="team-info">
<h3><Rahul Kumar></h3>
<p class="role">Vice President</p>
<p class="person-info">
Rahul is the lead developer focusing on frontend technologies
and ensuring the smooth implementation of designs.
</p>
<div class="social-icons">
<a
href="https://www.linkedin.com/in/jaiyankargupta"
target="_blank"
title="LinkedIn"
><i class="fab fa-linkedin-in"></i
></a>
<a
href="https://twitter.com/rahulkumar"
target="_blank"
title="Twitter"
><i class="fab fa-twitter"></i
></a>
<a
href="https://github.com/rahulkumar"
target="_blank"
title="GitHub"
><i class="fab fa-github"></i
></a>
</div>
</div>
</div>
<div class="team-card">
<img
src="./public/developers.png"
alt="OCD Developer"
class="team-photo"
/>
<div class="team-info">
<h3><OCD Developer></h3>
<p class="role">Backend Developer</p>
<p class="person-info">
This role specializes in backend development, managing
databases, and ensuring efficient server-side operations.
</p>
<div class="social-icons">
<a
href="https://www.linkedin.com/in/ocddeveloper"
target="_blank"
title="LinkedIn"
><i class="fab fa-linkedin-in"></i
></a>
<a
href="https://twitter.com/ocddeveloper"
target="_blank"
title="Twitter"
><i class="fab fa-twitter"></i
></a>
<a
href="https://github.com/ocddeveloper"
target="_blank"
title="GitHub"
><i class="fab fa-github"></i
></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Club Members Section -->
<!-- Club Members Section -->
<section class="club-members-section">
<div class="club-members-container">
<h1 id="headingclubmembers">Club Members</h1>
<div class="club-members-cards">
<div class="club-member-card">
<div class="image-content">
<img
src="https://avatars.githubusercontent.com/u/139970041?v=4"
alt="John Doe"
class="club-member-photo"
/>
</div>
<div class="club-member-info">
<h3><Riya Raj></h3>
<p class="club-member-role">Backend Developer</p>
<p class="club-member-intro">
Riya is a skilled web developer with expertise in Web Development, App development, UI/UX designing and competitive programming.
</p>
<div class="club-member-social-icons">
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="club-member-card">
<div class="image-content">
<img
src="./public/ocd-members/mohak.jpeg"
alt="Jane Smith"
class="club-member-photo"
/>
</div>
<div class="club-member-info">
<h3><Mohak Mittal></h3>
<p class="club-member-role">Web Developers</p>
<p class="club-member-intro">
Mohak Mittal is a hard working and passionate web developer with an interest of creating beautiful user-friendly interfaces and contribute in open source... </p>
<div class="club-member-social-icons">
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="club-member-card">
<div class="image-content">
<img
src="./public/ocd-members/isham.jpeg"
alt="Mike Johnson"
class="club-member-photo"
/>
</div>
<div class="club-member-info">
<h3><Isham></h3>
<p class="club-member-role">Frontend Developer</p>
<p class="club-member-intro">
Isham is a Frontend developer with a passion for creating visually appealing and user-friendly interfaces.
</p>
<div class="club-member-social-icons">
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/Isham17NIT"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="club-member-card">
<div class="image-content">
<img
src="https://avatars.githubusercontent.com/u/167028125?v=4"
alt="Sarah Johnson"
class="club-member-photo"
/>
</div>
<div class="club-member-info">
<h3><Nitika Sheoran></h3>
<p class="club-member-role">Frontend Developer</p>
<p class="club-member-intro">
Nitika Sheoran is a frontend developer with a passion for creating intuitive and user-friendly interfaces.
</p>
<div class="club-member-social-icons">
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="club-member-card">
<div class="image-content">
<img
src="./public/ocd-members/anshika.jpeg"
alt="David Smith"
class="club-member-photo"
/>
</div>
<div class="club-member-info">
<h3><Anashika Yadav></h3>
<p class="club-member-role">Full Stack Developer</p>
<p class="club-member-intro">
Anshika is a front-end developer with back-end knowledge, focused on creating seamless, visually appealing web experiences. </p>
<div class="club-member-social-icons">
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="club-member-card">
<div class="image-content">
<img
src="./public/ocd-members/vyom.jpeg"
alt="Emily Johnson"
class="club-member-photo"
`/>
</div>
<div class="club-member-info">
<h3><Vyom bajaj></h3>
<p class="club-member-role">Front-end developer</p>
<p class="club-member-intro">
Vyom Bajaj combines his expertise in front-end development with a keen ability to solve complex problems, ensuring both visually appealing and highly functional solutions
</p>
<div class="club-member-social-icons">
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="ocd-member-link"><p><a href="./html/ocdMembers.html">
<click here to get more club members></a> </p>
</div>
</section>
<!-- Suggestion Box -->
<div class="suggestion" title="FILL THE FEEDBACK FORM">
<a href="./html/feedback.html" class="suggestion-link">Help Us Improve</a>
</div>
<!-- Footer -->
<footer>
<div class="footer-container">
<div class="footer-left">
<a href="index.html" class="footer-logo-link">
<img
class="footer-logo"
src="./public/ocdlogo.png"
alt="OCD Logo"
/>
</a>
<p>© 2024 <Open Code Developers Society>, NIT Kurukshetra.</p>
<p>All rights reserved.</p>
</div>
<div class="footer-center">
<h3>Quick Links</h3>
<ul>
<li><a href="html/events.html"><Events></a></li>
<li><a href="html/about.html"><About></a></li>
<li><a href="html/achievements.html"><Achievements></a></li>
<li><a href="html/contactUs.html"><Contact Us></a></li>
</ul>
</div>
<div class="footer-right">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="https://github.com/Mohak1809/OCD-Website" target = "_blank"
><i class="fab fa-github"></i
></a>
<a href="https://x.com" target = "_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/ocd_nitkkr/" target = "_blank"
><i class="fab fa-instagram"></i
></a>
<a
href="https://www.linkedin.com/showcase/opencode-developers-society" target = "_blank"
><i class="fab fa-linkedin-in"></i
></a>
</div>
</div>
</div>
</footer>
<script src="./js/index.js">
</script>
</body>
</html>