-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
954 lines (825 loc) · 39.9 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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <meta name="description" content="CodeLite 2024 Hackathon"> -->
<meta name="description"
content="Codelite: Unleash your coding creativity and compete against other developers in this thrilling hackathon.">
<meta name="keywords"
content="hackathon, coding competition, software development, innovation, technology, creativity, problem-solving, teamwork, collaboration, Codelite, coding challenge, developers, programmers, software engineers, app development, web development, tech community, prizes, awards, AI hackathon, artificial intelligence, machine learning, deep learning, Pune hackathon, India hackathon, coding event, tech event, startup, entrepreneurship, coding bootcamp, hackathon ideas, hackathon projects, coding contest, programming contest, developer conference, tech conference, coding marathon, hackathon weekend, hackathon night, coding challenge online, online hackathon, remote hackathon, virtual hackathon, hackathon participants, hackathon winners, hackathon sponsors, hackathon judges, hackathon mentors, hackathon organizers, hackathon agenda, hackathon schedule, hackathon registration, hackathon deadline, hackathon rules, hackathon guidelines, hackathon prizes, hackathon winners, hackathon feedback, hackathon experience, hackathon recap, hackathon highlights, hackathon photos, hackathon videos">
<title>CodeLite 2024</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="img/codelitefavicon.ico" type="image/x-icon">
</head>
<body>
<body onload="hideLoader()">
<div id="loader">
<video autoplay loop muted>
<source src="img/preloader.webm" type="video/webm">
</video>
</div>
<div class="side-navbar">
<div class="logo">
<div class="side-navbar-logo">
<img src="img/pdea.webp" alt="" loading="lazy">
</div>
<div class="side-navbar-logo">
<img src="img/codeliteLOGO.webp" alt="">
</div>
</div>
<input type="checkbox" id="open-menu">
<label for="open-menu" id="menu-bar">
<img src="img/menubar.svg" alt="">
</label>
<label for="open-menu" id="overlay">
</label>
<div class="link-container">
<label for="open-menu">
<img src="img/close.svg" alt="">
</label>
<a href="#HOME">Home</a>
<a href="#ABOUT">About</a>
<a href="#TRACKS">Tracks</a>
<a href="#SCHEDULE">Schedule</a>
<a href="#TEAM">Team</a>
<a href="#PRIZE">Prize</a>
<a href="#SPONSOR">Partners</a>
<a href="#FAQ">FAQ</a>
</div>
</div>
<section class="hero section">
<nav class="navbar">
<div class="hero-logo">
<img src="img/codeliteLOGO.webp" alt="">
</div>
<ul>
<li>
<a href="#HOME">Home</a>
</li>
<li>
<a href="#TRACKS">Tracks</a>
</li>
<li>
<a href="#TEAM">Team</a>
</li>
<li>
<a href="#SCHEDULE">Schedule</a>
</li>
<li>
<a href="#SPONSOR">Partners</a>
</li>
<li>
<a href="#PRIZE">Prize</a>
</li>
<li>
<a href="#ABOUT">About</a>
</li>
<li>
<a href="#FAQ">FAQ</a>
</li>
</ul>
<div class="hero-logo">
<img src="img/pdea.webp" alt="">
</div>
</nav>
<div class="row">
<div class="left-sec">
<!-- <img class="first-txt" src="/img/heroname.png"> -->
<h1 class="first-txt">CODELITE</h1>
<H1 class="sec-txt">2024</H1>
<p class="running-txt">
CODE | CREATE | CONQUER
</p>
<div class="location ">
<a href="https://maps.app.goo.gl/H4b8jXQTJGDESY9J7" target="_blank"><img src="img/location.svg"
alt=""></a>
<p> PDEA's College of Engineering,Pune</p>
</div>
<div class="launchtime">
<div>
<span id="days">00</span>
<p>Days</p>
</div>
<div>
<span id="hours">00</span>
<p>Hours</p>
</div>
<div>
<span id="minutes">00</span>
<p>Minutes</p>
</div>
<div>
<span id="seconds">00</span>
<p>Seconds</p>
</div>
</div>
<div class="btns sec-margin">
<a href="https://codelite.devfolio.co/" target="_blank">
<div class="partner-button">
<button> <img src="img/Devfolio_favicon.png"> Apply with Devfolio
</button>
</div>
</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeQZzUsgsZX7XtuTVczbl1Ipp8EizLQ0XLN78dJ1dJh4UsoAg/viewform?usp=sf_link"
target="_blank">
<div class="partner-button">
<button> Be a Partner
</button>
</div>
</a>
</div>
</div>
<video class="hero-astro" autoplay loop muted>
<source src="img/astro space shuttle.webm" type="video/webm">
</video>
</section>
<section class="about section" id="ABOUT">
<div class="txt-center">
<h1>ABOUT <span class="span-txt">US</span></h1>
</div>
<div class="about-group">
<img class="about-planet" src="img/mars.webp" alt="" loading="lazy">
<img class="about-astro" src="img/about-planet1.png">
<div class="right-sec">
<div class="upper-box">
<h1>WHY <span class="span-txt ">CODELITE</span> ?</h1>
<p>
Welcome to CodeLite, an exciting offline hackathon on October 19th and 20th at PDEA's
College of Engineering, Manjari, where GenAI and Web3 come together in a cosmic-themed
adventure. Dive into a universe inspired by space and the solar galaxy.Instead of relying on
central points, Web3 operates across a network of interconnected nodes, creating a secure
and open space where ownership and identity are fully in users' hands. Just like explorers
charting the stars, Web3 users navigate a connected digital world where value and control
are distributed and empowering. At CodeLite, you’ll engage with three dynamic tracks: Web3,
GenAI, and Open Innovation. Whether you're developing decentralized applications, leveraging
AI capabilities, or exploring novel ideas, our hackathon provides the perfect stage to
innovate and excel in this digital galaxy.
</p>
<div class="info">
<h1>
IMPORTANT
<span class="span-txt">
DATES AND DEADLINE
</span>
</h1>
<span>
<p class="title">Registration Started:
<span class="date">22 August 2024</span>
</p>
</span>
<span>
<p class="title">CODELITE:
<span class="date"> 19th October & 20th October 2024</span>
</p>
</span>
<span>
<p class="title">Registration Deadline:
<span class="date">ENDED</span>
</p>
</span>
</div>
</div>
</div>
</div>
</section>
<section class="tracks section" id="TRACKS">
<div class="txt-center">
<h1>Tracks</h1>
</div>
<div class="track-container" loading="lazy">
<div class="card-container">
<img class="track-astro" src="img/astro-tracks.png">
<div class="card">
<h2>Gen AI</h2>
<div class="card__content">
<p class="card__title">Gen AI</p>
<p class="card__description">Explore the future of artificial intelligence. Create
innovative applications that leverage the power of generative AI. Push the boundaries of
creativity and automation.</p>
</div>
</div>
<div class="card">
<h2>Web 3</h2>
<div class="card__content">
<p class="card__title">Web 3</p>
<p class="card__description">Build cutting-edge applications that harness the power of
blockchain technology.Create decentralized solutions that redefine how we interact with
the digital world.</p>
</div>
</div>
<div class="card">
<h2>Open Innovation</h2>
<div class="card__content">
<p class="card__title">Open Innovation</p>
<p class="card__description">Break free from traditional boundaries. Collaborate with
diverse teams and explore innovative ideas. Foster a culture of open innovation and
create solutions that challenge the status quo.</p>
</div>
</div>
</div>
<div class="planet-container">
<img src="img/venus.webp" alt="" loading="lazy">
</div>
</div>
</div>
</section>
<section class="timeline section" id="SCHEDULE">
<div class="txt-center">
<h1>Timeline</h1>
</div>
<img class="hanging" src="img/hangingastro1.png">
<div class="timelinebox">
<img src="img/tracks1.png" loading="lazy">
<img src="img/tracks2.png" loading="lazy">
<img src="img/tracks3.png" loading="lazy">
</div>
</section>
<section class="tracks section" id="TRACKS">
<div class="txt-center">
<h1>Problem Statements</h1>
<div class="statementcontainer">
<div id="download_div">
<button id="down_button"><a href="/PROBLEM STATEMENTS.pdf" target="_blank">Download Statements!</button></a>
</div>
</div>
</section>
<section class="prize-pool section" id="PRIZE">
<div class="txt-center">
<h1>PRIZES</h1>
</div>
<div class="prize-container">
<div class="prize-text">
<!-- <h1> 2 <span>Lakh</span> +<br></h1> -->
<!-- <h4>Prizepool</h4> -->
</div>
</div>
</section>
<section class="winners">
<div class="txt-center">
<h1>Winners</h1>
</div>
<div class="winner-box">
<div class="winner-slide">
<div class="winner-team">
<img src="img/Team_nopeace.jpg" alt="">
<div class="text-box">
<h1>Team Nopeace.js</h1>
<p> ( Web3 )</p>
</div>
</div>
<div class="winner-team">
<img src="img/Team_Lord_of_Pings.jpg" alt="">
<div class="text-box">
<h1>Team Lord Of Pings</h1>
<p> ( Open Innovation )</p>
</div>
</div>
<div class="winner-team">
<img src="img/Team_Unite.jpg" alt="">
<div class="text-box">
<h1>Team Unite</h1>
<p> ( Gen AI )</p>
</div>
</div>
<div class="winner-team">
<img src="img/Team_Delta.jpg" alt="">
<div class="text-box">
<h1>Team Delta</h1>
<p> ( Best Begineer )</p>
</div>
</div>
</div>
</div>
</section>
<section class="team section" id="TEAM">
<div class="txt-center">
<h1>TEAM</h1>
</div>
<div class="team-row">
<div class="row1">
<div class="user">
<img src="img/principalsirdp.png" alt="" loading="lazy">
<div class="user-detail">
<h2>Dr. R.V <br>Patil</h2>
<p>(Principal)</p>
</div>
</div>
<div class="user">
<img src="img/profdlmulepfp.png" alt="" loading="lazy">
<div class="user-detail">
<h2>Prof .D. L.<br> Mule</h2>
<p>(Faculty co-ordinator)</p>
</div>
</div>
<div class="user">
<img src="img/HODITDP.png" alt="" loading="lazy">
<div class="user-detail">
<h2>Dr. D.S <br>Hirolikar</h2>
<p>(HOD IT Department)</p>
</div>
</div>
<div class="user">
<img src="img/profpriyanka.png" alt="" loading="lazy">
<div class="user-detail">
<h2>Prof.Priyanka Kaurav</h2>
<p>(Faculty co-ordinator)</p>
</div>
</div>
</div>
<div class="row2">
<div class="user">
<img src="img/vaibhavpfp.png" loading="lazy">
<div class="user-detail">
<h2>Vaibhav Devkar</h2>
<p>Lead Organizer</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/vaibhav-devkar-528965270/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="user">
<img src="img/kadampfp.png" loading="lazy">
<div class="user-detail">
<h2>Aditya Kadam</h2>
<p>Jt.Lead Organizer</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/aditya-kadam-757b68255/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="user">
<img src="img/sayalipfp.png" loading="lazy">
<div class="user-detail">
<h2>Sayali Bhakare</h2>
<p>Jt.Lead Organizer</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/sayali-bhakare-43710b244/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
</div>
<div class="row3 ">
<div class="user">
<img src="img/shubhampfp.png" loading="lazy">
<div class="user-detail">
<h2>Shubham Bhat</h2>
<p>Management Lead</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/bhatsupshubham/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="user">
<img src="img/omrpfp.png" loading="lazy">
<div class="user-detail">
<h2>Om Rindhe</h2>
<p>Tech Lead</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/om-rindhe-887b90291/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="user">
<img src="img/tanishkpfp.png" loading="lazy">
<div class="user-detail">
<h2>Tanishq Kokane</h2>
<p>Marketing Lead</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/tanishq-kokane-7611801b4/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="user">
<img src="img/yogeshdp.png" loading="lazy">
<div class="user-detail">
<h2>Yogesh Landge</h2>
<p>Media Lead</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/yogesh-landge-a79383279/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="user">
<img src="img/sagarpfp.png" loading="lazy">
<div class="user-detail">
<h2>Sagar Karegaonkar</h2>
<p>Creativity Lead</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/sagar-karegaonkar/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="user">
<img src="img/darshanapfp.png" loading="lazy">
<div class="user-detail">
<h2>Darshana Chaudhari</h2>
<p>Documentation Lead</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/darshana-chaudhari-41b24a259/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="user">
<img src="img/pratikpfp.png" loading="lazy">
<div class="user-detail">
<h2>Pratik Shirode</h2>
<p>Logistics Head</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/pratik-shirode-7b60092ba/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<div class="user">
<img src="img/nileshpfp.png" alt="">
<div class="user-detail">
<h2>Nilesh Desale</h2>
<p>Activity Lead</p>
<div class="user-link">
<a href="https://www.linkedin.com/in/nilesh-desale-a79872282/" target="_blank">
<img class="userlinkedin" src="img/icons8-linkedin.svg" alt="linkedin">
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="Partners" id="SPONSOR">
<div class="txt-center">
<h1>SPONSORS</h1>
</div>
<div class="sp-row">
<p>Thank you to our generous sponsors for contributing to the Grand Event and making this awesome
Idea into a
reality!</p>
<div class="sp-detail">
<div class="sp-tag">
<h1>Powered By</h1>
</div>
<div class="sp-list" id="jainX">
<div class="sp-box" >
<img src="img/jainx-logo (1).png">
</div>
</div>
</div>
<div class="sp-detail">
<div class="sp-tag">
<h1>Co-Powered By</h1>
</div>
<div class="sp-list">
<div class="sp-box">
<img src="img/scroll_journey_white (1).png">
</div>
</div>
</div>
<div class="sp-detail">
<div class="sp-tag">
<h1>Gold</h1>
</div>
<div class="sp-list">
<div class="sp-box">
<img src="img/Devfolio_Logo-Colored.svg" alt="DEVFOLIO LOGO">
</div>
<!-- <div class="sp-box1">
<img id="gfgimg" src="img/GeeksforGeeks.svg">
</div> -->
</div>
</div>
<div class="sp-detail">
<div class="sp-tag">
<h1>Silver</h1>
</div>
<div class="sp-list">
<div class="sp-box">
<img src="img/Polygon_Logo-Dark.png" alt=" POLYGON LOGO">
</div>
<div class="sp-box">
<img src="img/ethindia-dark.png" alt="ETHINDIA LOGO">
</div>
<div class="sp-box">
<a href="https://beeceptor.com/"><img src="img/beeceptor-logo-horizontal.png"
alt=" Beeceptor Logo"></a>
</div>
<div class="sp-box">
<img src="img/Aptos.png">
</div>
</div>
</div>
<div class="sp-detail">
<div class="sp-tag">
<h1>Bronze</h1>
</div>
<div class="sp-list">
<div class="sp-box">
<img src="img/InterviewBuddy.png">
</div>
</div>
</div>
<div class="sp-detail">
<div class="sp-tag">
<h1>Domain Partner</h1>
</div>
<div class="sp-list">
<div class="sp-box2">
<img class="xyzimg" src="img/xyz.png">
</div>
</div>
</div>
<div class="sp-detail">
<div class="sp-tag">
<h1>Certification Partner</h1>
</div>
<div class="sp-list">
<div class="sp-box3">
<img id="gmcimg" src="img/give-my-certificate.png">
</div>
</div>
</div>
</div>
</section>
<section class="FAQ section" id="FAQ">
<div class="txt-center">
FAQ
</div>
<div class="row">
<div class="faq left">
<div class="faq-box">
<!-- faq1 -->
<div class="question">
<h3>
What Will Be The Team Size?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
The Team Size For The Hackathon Is Between 2- 4 Members.
</p>
</div>
</div>
<div class="faq-box">
<!-- faq2-->
<div class="question">
<h3>
Will Accomodation Be provided?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
No,Participants Will Have To Look For Accomodations On Their Own.
</p>
</div>
</div>
<div class="faq-box">
<!-- faq3 -->
<div class="question">
<h3>
What Do I Need To Carry With Me ?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
Just Come With Your Personal Laptops To Enjoy Your Hacking Journey.Also Make Sure To
Keep
Your Chargers To Keep Your Laptops Energized While You Hack!<br>(P.S. Make Sure To Carry
Any
Other Essential Or Personal Items With You.)
</p>
</div>
</div>
<div class="faq-box">
<!-- faq4 -->
<div class="question">
<h3>
Can We Apply For Multiple Tracks?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
No, You can change your track but you can't apply for multiple tracks.
</p>
</div>
</div>
<div class="faq-box">
<!-- faq7 -->
<div class="question">
<h3>
How Will You Choose The Top 3 Teams Per Track?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
The Top 3 Teams Per Track Will Be Selected By A Panel Consisting Of Mentors, Judges, And
A
Committee. The Final Shortlist Will Be Created During The Hackathon Once All Projects
Have
Been Submitted.
</p>
</div>
</div>
</div>
<div class="faq right">
<div class="faq-box">
<!-- faq5 -->
<div class="question">
<h3>
What Is A Hackathon?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
A hackathon is a weekend-long event where students come together to learn the latest
technologies, build innovative projects, and network with top companies.
</p>
</div>
</div>
<div class="faq-box">
<!-- faq5 -->
<div class="question">
<h3>
What Will Be The Registration Cost?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
Nothing! That's right, CodeLite is completely free for all students accepted to the
event.
We provide everything you need to help you focus on learning the latest technologies,
building innovative projects, and networking with top companies- all thanks to the
generous
donations from our sponsors!
</p>
</div>
</div>
<div class="faq-box">
<!-- faq6 -->
<div class="question">
<h3>
How do I Know My Registration Is Confirmed?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
Once We Receive The Applications, We Will Shortlist The Participants 1 Week Before The
Hackathon. Shortlisted Hackers Have To Complete The RSVP Within The 3 Days To Confirm
Their
Registration For The Hackathon.
</p>
</div>
</div>
<div class="faq-box">
<!-- faq7 -->
<div class="question">
<h3>
Will You Be Providing Meals ?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
Yes! Food will be served daily to everyone attending CodeLite.We'll also have coffee,
tea,
and other beverages available to keep you energized!
</p>
</div>
</div>
<div class="faq-box">
<!-- faq7 -->
<div class="question">
<h3>
How Are The Winners Decided ?
</h3>
<div class="down-arrow">
<img src="img/down-arrow-svgrepo-com.svg" alt="">
</div>
</div>
<div class="answer">
<p>
The winners will be decided by the judges based on the presentation and project
</p>
</div>
</div>
</div>
</div>
</section>
<section class="venue">
<div class="txt-center">
<h1 id="location-heading">VENUE</h1>
</div>
<div class="container " id="location-box">
<div class="contact-us">
<h2>Contact Us</h2>
<p>
PDEA's College of Engineering,Manjari <br>
Represents the 24 hours offline hackathon in pune.
</p>
<div class="contact-deatail">
<div class="contact-person">
<h3>vaibhav Devkar </h3>
<p><a href="tel:9028233934">9028233934</a></p>
</div>
<div class="contact-person">
<h3>Aditya Kadam </h3>
<p><a href="tel:8432707038">8432707038</a></p>
</div>
<div class="contact-person">
<h3>Sayali Bhakare </h3>
<p><a href="tel:9803935935">9803935935</a></p>
</div>
</div>
</div>
<div class="map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d10474.731978367507!2d73.970352551611!3d18.53066343746141!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc2c351063f8a3b%3A0x3fd6c9f17003a16!2sCodelite%20hackthon!5e0!3m2!1sen!2sin!4v1728278241547!5m2!1sen!2sin"
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</section>
<footer>
<div class="text-center">
<h1 class="">©CodeLite2024 . All rights reserved</h1>
</div>
<div class="text-center social-icon">
<a href="https://www.instagram.com/codelitehacks/" target="_blank">
<img src="img/icons8-instagram.svg" alt="instagram">
</a>
<a href="https://x.com/codelitehacks" target="_blank">
<img src="img/icons8-twitterx.svg" alt="twitter">
</a>
<a href="https://www.linkedin.com/company/codelitehacks/" target="_blank">
<img src="img/icons8-linkedin.svg" alt="linkedin">
</a>
<a href="https://discord.gg/ga687yff" target="_blank">
<img src="img/icons8-discord.svg" alt="discord">
</a>
</div>
<div class="text-center">
<h1 class="">
Made with ❤ by CODELITE TECH TEAM</h1>
</div>
</footer>
<script src="script.js"></script>
<script>
var countDownDate = new Date("Oct 19, 2024 00:00:00").getTime();
var x = setInterval(function () {
var now = new Date().getTime();
// var distance = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("days").innerHTML = days;
document.getElementById("hours").innerHTML = hours;
document.getElementById("minutes").innerHTML = minutes;
document.getElementById("seconds").innerHTML = seconds;
}, 1000);
</script>
</body>
</html>