forked from acmditu/ACM-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
817 lines (723 loc) · 43.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./CSS/navbar.css">
<link rel="stylesheet" href="./CSS/front_page.css">
<link rel="stylesheet" href="./CSS/about.css">
<link rel="stylesheet" href="./CSS/events.css">
<link rel="stylesheet" href="./CSS/projects_blogs.css">
<link rel="stylesheet" href="./CSS/collabs.css">
<link rel="stylesheet" href="./CSS/contact_us.css">
<link rel="stylesheet" href="./CSS/faq.css">
<link rel="stylesheet" href="./CSS/membership_footer.css">
<!--Noto sans and Roboto font family-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<title>DITU ACM Student Chapter</title>
</head>
<body>
<!-- Navbar Section -->
<nav class="navbar">
<!--Line at top of navbar-->
<div class="line">
<div class="semi-circle1"></div>
<div class="top-line"></div>
<div class="semi-circle2"></div>
</div>
<!--all links of the navbar-->
<div class="all-links">
<div class="nav-link active">
<a href="#" class="link">HOME</a>
</div>
<div class="nav-link">
<a href="#" class="link">ABOUT</a>
</div>
<div class="nav-link">
<a href="#" class="link">TEAMS</a>
</div>
<div class="nav-link">
<a href="#" class="link">EVENTS</a>
</div>
<div class="nav-link">
<a href="#" class="link">PROJECTS</a>
</div>
<div class="nav-link">
<a href="#" class="link">BLOGS</a>
</div>
<div class="nav-link">
<a href="#" class="link">CONTACT US</a>
</div>
</div>
</div>
</nav>
<!-- Front Page Section -->
<!-- All the elements of the Front page are in this header tag -->
<header>
<!-- transbox1 represents the top black transparent box which contains the navigation bar -->
<div class="transbox1"></div>
<!-- transbox2 represents the middle blue transparent box on which the logos and animated welcome text is present -->
<div class="transbox2">
<!-- div tag to put ditu acm logo on the left hand side of the blue transparent box-->
<div class="logo1"></div>
<!-- div tag with class name Text that contains all the text which is shown on the front page on the blue transparent box -->
<div class="Text">
<div class="heading1">WELCOME TO</div>
<!-- div with class heading2 for the animated text in the middle which is being animated using css -->
<div class="heading2"><span><</span>DITU ACM STUDENT CHAPTER<span>></span></div>
<div class="heading3">"ADVANCE COMPUTING AS A SCIENCE AND PROFESSION"</div>
</div><!--closing Text div-->
<!-- div tag to put DITU ACM-W SC white logo on the right hand side of the blue transparent box-->
<div class="logo2"></div>
</div><!--closing transbox2 div-->
<!-- transbox3 represents the black transparent box just below the blue transparent box on which the gallery section is placed -->
<div class="transbox3">
<!-- div tag for gallery section on the bottom black transparent box-->
<div class="Gallery">
<!-- left/previous arrow button of the gallery -->
<button class="leftgallerybttn"><img src="/ACM-Website/Images/leftarrow.png" alt=""></button>
<img class="item" src="/Images/img1.jpg" alt=""><!--Gallery Image_1 -->
<img class="item" src="/Images/img2.jpg" alt=""><!--Gallery Image_2 -->
<img class="item" src="/Images/img3.jpg" alt=""><!--Gallery Image_3 -->
<img class="item" src="/Images/img4.jpg" alt=""><!--Gallery Image_4 -->
<!-- right/next arrow button of the gallery -->
<button class="rightgallerybttn"><img src="/Images/rightarrow.png" alt=""></button>
</div><!--closing Gallery div-->
</div><!--closing transbox3 div-->
</header><!-- header closed!!! -->
<!-- About Section -->
<div id="all">
<!--span tag used for changing fonts-->
<span style="font-family: 'Noto Sans', sans-serif;">
<!--ABOUT heading(including <marquee> attribute for the animation)-->
<div id="H"><marquee width="20%">
<h1 class="about">About </h1></marquee>
<hr id="Line">
</div>
<!--Below division contains one para including image-->
<div class="flex">
<!--This division includes image code-->
<div id="Ditu" class="all-img">
<img class="limg" src="/Images/dit-university-logo.jpg">
</div>
<!--This division includes Text code-->
<div class="All-Text">
<div class="RightText">
<h2 class="head">DITU</h2>
<p style="font-size:20px; font-weight: normal;">
HelloLorem ipsum dolor sit amet consectetur adipisicing elit. Laborum, quae in eius, ipsum est hic aperiam desi reprehenderit explicabo a exit the, dolor vel. A porro thacere, tempore fuga esse nihil provident ducimus lostrat accusantium assumenda, ratione eveni rain days thoei
architecto debitisaroui the, de at voluptates iste debulait consequuntur odit similique laainventore greates dor. Reprehenderit solutar deor thi eminune dolor demistaris abascus devastni praesent id quia nam samdosa nobis libero quod dicta vitae, laborum officia consecteture die voluptatem venliiane dolorisdepoys consequaturuis dae doloribus dolorem suscipi alias. Dolorem quaerat fugit distinctio. Molestiales corrupti, totam eumer quiartz voluptatibus idot nowd theisoras aliquam quam ducimues maxime? th best evar wizard is maginie?
</p>
</div>
</div>
</div>
<!--Below division contains one para including image-->
<div class="flex">
<!--This division includes Text code-->
<div class="All-Text">
<div class="LeftText">
<h2 class="head">ACM</h2>
<p style="font-size:20px; font-weight: normal;">
HelloLorem ipsum dolor sit amet consectetur adipisicing elit. Laborum, quae in eius, ipsum est hic aperiam desi reprehenderit explicabo a exit the, dolor vel. A porro thacere, tempore fuga esse nihil provident ducimus lostrat accusantium assumenda, ratione eveni rain days thoei
architecto debitisaroui the, de at voluptates iste debulait consequuntur odit similique laainventore greates dor. Reprehenderit solutar deor thi eminune dolor demistaris abascus devastni praesent id quia nam samdosa nobis libero quod dicta vitae, laborum officia consecteture die voluptatem venliiane dolorisdepoys consequaturuis dae doloribus dolorem suscipi alias. Dolorem quaerat fugit distinctio. Molestiales corrupti, totam eumer quiartz voluptatibus idot nowd theisoras aliquam quam ducimues maxime? th best evar wizard is maginie?
</p>
</div>
</div>
<!--This division includes image code-->
<div id="ACM" class="all-img">
<img class="rimg" src="/Images/ACM Chapter LOGO .png">
</div>
</div>
<!--Below division contains one para including image-->
<div class="flex">
<div id="Acm-Ditu" class="all-img">
<img class="limg" src="/Images/ACM-Ditu.jpg">
</div>
<!--This division includes Text code-->
<div class="All-Text">
<div class="RightText">
<h2 class="head">ACM-DITU</h2>
<p style="font-size:20px; font-weight: normal;">
HelloLorem ipsum dolor sit amet consectetur adipisicing elit. Laborum, quae in eius, ipsum est hic aperiam desi reprehenderit explicabo a exit the, dolor vel. A porro thacere, tempore fuga esse nihil provident ducimus lostrat accusantium assumenda, ratione eveni rain days thoei
architecto debitisaroui the, de at voluptates iste debulait consequuntur odit similique laainventore greates dor. Reprehenderit solutar deor thi eminune dolor demistaris abascus devastni praesent id quia nam samdosa nobis libero quod dicta vitae, laborum officia consecteture die voluptatem venliiane dolorisdepoys consequaturuis dae doloribus dolorem suscipi alias. Dolorem quaerat fugit distinctio. Molestiales corrupti, totam eumer quiartz voluptatibus idot nowd theisoras aliquam quam ducimues maxime? th best evar wizard is maginie?
</p>
</div>
</div>
</div>
<!--Below division contains one para including image-->
<div class="flex">
<!--This division includes Text code-->
<div class="All-Text">
<div class="LeftText">
<h2 class="head">ACM-W</h2>
<p style="font-size:20px; font-weight: normal;">
HelloLorem ipsum dolor sit amet consectetur adipisicing elit. Laborum, quae in eius, ipsum est hic aperiam desi reprehenderit explicabo a exit the, dolor vel. A porro thacere, tempore fuga esse nihil provident ducimus lostrat accusantium assumenda, ratione eveni rain days thoei
architecto debitisaroui the, de at voluptates iste debulait consequuntur odit similique laainventore greates dor. Reprehenderit solutar deor thi eminune dolor demistaris abascus devastni praesent id quia nam samdosa nobis libero quod dicta vitae, laborum officia consecteture die voluptatem venliiane dolorisdepoys consequaturuis dae doloribus dolorem suscipi alias. Dolorem quaerat fugit distinctio. Molestiales corrupti, totam eumer quiartz voluptatibus idot nowd theisoras aliquam quam ducimues maxime? th best evar wizard is maginie?
</p>
</div>
</div>
<!--This division includes image code-->
<div id="ACM-W" class="all-img">
<img class="rimg" src="/Images/ACM-W_NewLogo.jpg">
</div>
</div>
</span>
</div>
<!-- Events Section -->
<div class="EventsEvents"><!-- parent div for all the elements -->
<div class="EventsHeading"><!-- divv for storing the Events -->
<h1 class="EventsEvent"><label for="hi">Events </label></h1>
<hr class="Eventshori" id="hi">
</div>
<div class="Eventscontainer"><!-- container div for the cards -->
<a href="#">
<div class="Eventscard1"><!-- div for the card 1 -->
<div class="Eventstext"><!-- text div inside the card -->
<h1 class="Eventsh">Git Hub</h1>
<h3 id="con">Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores, aliquid illum sed delectus maiores velit tempore voluptatibus minus, voluptas repudiandae error ab ipsam, corrupti quidem molestias quam dicta saepe magni?</h3>
</div>
<img src="acm.jpeg" alt="Image not available" id="poster"><!-- image for the card1 -->
</div>
</a>
<a href="#">
<div class="Eventscard2"><!-- div for the card 2 -->
<div class="Eventstext"><!-- text div inside the card -->
<h1 class="Eventsh">LINKEDIN
</h1>
<h3 id="con">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Enim eos possimus rerum quisquam obcaecati numquam, voluptates, ab nobis consequuntur excepturi quasi! A velit animi expedita odio voluptates, magni natus ipsum!
</h3>
</div>
<img src="acm.jpeg" alt="image not available" id="poster"><!-- image for the card 2 -->
</div>
</a>
</div>
<div class="Eventscards">
<svg width="2vw" height="4vw" viewBox="0 0 25 54" fill="none" xmlns="http://www.w3.org/2000/svg" id="left">
<path d="M4.27367 31.7132H4.27923L2.28579 29.2659C2.06461 28.9943 1.86482 28.6304 1.72112 28.1859L0.293844 28.6473L1.72112 28.1859C1.57779 27.7425 1.5 27.2484 1.5 26.74C1.5 26.2316 1.57779 25.7374 1.72112 25.294C1.86482 24.8495 2.06461 24.4856 2.28579 24.2141L2.28648 24.2132L20.2783 2.09166L20.2788 2.09102C20.5769 1.72411 20.8756 1.56744 21.1031 1.52019C21.3165 1.4759 21.5586 1.50687 21.8287 1.6791C22.1144 1.86128 22.4291 2.2057 22.6752 2.74273C22.9197 3.27646 23.0618 3.92894 23.0614 4.61749V4.61841V48.8615C23.0614 50.4556 22.3962 51.4358 21.8279 51.7985C21.5556 51.9723 21.317 52.0071 21.1208 51.9729C20.9264 51.939 20.6249 51.8109 20.2821 51.3889L20.2814 51.3881L4.27367 31.7132Z" fill="#F9FCFF" stroke="black" stroke-width="3"/>
</svg><!--left button -->
<svg width="2vw" height="4vw" viewBox="0 0 26 54" fill="none" xmlns="http://www.w3.org/2000/svg" alt="svg not available" id="right">
<path d="M20.8419 31.7135H20.8474L4.84092 51.3902L4.84024 51.3911C4.49743 51.8131 4.196 51.9412 4.00171 51.975C3.8056 52.0092 3.5671 51.9745 3.29486 51.8007C2.72673 51.438 2.06152 50.4576 2.06152 48.8633L2.06152 4.61681L2.06152 4.6159C2.0611 3.92723 2.20314 3.27466 2.44768 2.74085C2.69373 2.20374 3.0085 1.85929 3.29414 1.67712C3.56417 1.5049 3.80611 1.47396 4.01935 1.51823C4.24682 1.56546 4.54545 1.7221 4.84352 2.08906L4.84404 2.0897L22.8342 24.2129L22.8349 24.2138C23.0561 24.4854 23.2559 24.8493 23.3996 25.2939C23.5429 25.7374 23.6207 26.2316 23.6207 26.7401C23.6207 27.2485 23.5429 27.7427 23.3996 28.1862C23.2559 28.6308 23.0561 28.9947 22.8349 29.2663L20.8419 31.7135Z" fill="#F9FCFF" stroke="black" stroke-width="3"/>
</svg><!-- right button -->
<div class="Eventsnewev"><!-- div for new more events -->
<h1 class="Eventsne"><a href="#">View All Events</a>
</h1>
</div>
</div>
<!-- Projects and Blogs Section -->
<!--Projects heading-->
<div class="projects-heading">
<p class="projects-text">
Projects 
</p>
<hr class="horizontal-line"> <!--To create horizontal line after Projects-->
</div>
<div class="project-grid"> <!--Project grid-->
<div class="arrow"> <!--This div arrow is a column of project grid-->
<a class="arrow-link" href=""> <!--for referring to the next slide of projects-->
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-left" viewBox="0 0 16 16">
<path d="M10 12.796V3.204L4.519 8 10 12.796zm-.659.753-5.48-4.796a1 1 0 0 1 0-1.506l5.48-4.796A1 1 0 0 1 11 3.204v9.592a1 1 0 0 1-1.659.753z"/>
</svg> <!--Arrow image-->
</a>
</div>
<div class="project-card"> <!--Project card-->
<img src="Images/project_card_image1.webp" class="project-img">
<div class="projects-subheading"> <!--Project subheading which moves to the top on hover-->
Head Count
</div>
<div class="project-img-hover">
<p class="project-description"> <!--Project description-->
Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
</p>
<div class="github-link"> <!--Github project link-->
<a href=""> <!--Github link for project-->
<img src="images/github.svg" class="github-logo">
</a>
</div>
</div>
</div>
<div class="project-card">
<img src="Images/project_card_image2.jpg" class="project-img">
<div class="projects-subheading">
ACM App
</div>
<div class="project-img-hover">
<p class="project-description">
Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
</p>
<div class="github-link">
<a href="">
<img src="images/github.svg" class="github-logo">
</a>
</div>
</div>
</div>
<div class="project-card">
<img src="Images/project_card_image3.jpg" class="project-img">
<div class="projects-subheading">
ACM App
</div>
<div class="project-img-hover">
<p class="project-description">
Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
</p>
<div class="github-link">
<a href="">
<img src="images/github.svg" class="github-logo">
</a>
</div>
</div>
</div>
<div class="arrow"> <!--right arrow-->
<a class="arrow-link" href="">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-right" viewBox="0 0 16 16">
<path d="M6 12.796V3.204L11.481 8 6 12.796zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753z"/>
</svg>
</a>
</div>
</div>
<div class="view-all-div">
<a href="">
<button class="view-all-button">
View all Projects
</button>
</a>
</div>
<!-- just copying -->
<div class="projects-heading">
<p class="projects-text">
Blogs 
</p>
<hr class="horizontal-line">
</div>
<div class="project-grid">
<div class="arrow">
<a class="arrow-link" href="">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-left" viewBox="0 0 16 16">
<path d="M10 12.796V3.204L4.519 8 10 12.796zm-.659.753-5.48-4.796a1 1 0 0 1 0-1.506l5.48-4.796A1 1 0 0 1 11 3.204v9.592a1 1 0 0 1-1.659.753z"/>
</svg>
</a>
</div>
<div class="project-card">
<img src="Images/project_card_image1.webp" class="project-img">
<div class="projects-subheading">
Head Count
</div>
<div class="project-img-hover">
<p class="project-description">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Dolor natus totam, quae eius animi sit, voluptates tenetur error numquam consectetur possimus modi velit recusandae voluptate laudantium facere debitis quos at?
</p>
<div class="github-link">
<a href="">
<img src="images/github.svg" class="github-logo">
</a>
</div>
</div>
</div>
<div class="project-card">
<img src="Images/project_card_image2.jpg" class="project-img">
<div class="projects-subheading">
ACM App
</div>
<div class="project-img-hover">
<p class="project-description">
Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
</p>
<div class="github-link">
<a href="">
<img src="images/github.svg" class="github-logo">
</a>
</div>
</div>
</div>
<div class="project-card">
<img src="Images/project_card_image3.jpg" class="project-img">
<div class="projects-subheading">
ACM App
</div>
<div class="project-img-hover">
<p class="project-description">
Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.
</p>
<div class="github-link">
<a href="">
<img src="images/github.svg" class="github-logo">
</a>
</div>
</div>
</div>
<div class="arrow">
<a class="arrow-link" href="">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-right" viewBox="0 0 16 16">
<path d="M6 12.796V3.204L11.481 8 6 12.796zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753z"/>
</svg>
</a>
</div>
</div>
<div class="view-all-div">
<a href="">
<button class="view-all-button">
View all Blogs
</button>
</a>
</div>
<!-- Collabs Section -->
<!-- Collaborations Heading -->
<div class="collabs-heading">
<p class="collabs-text">
Our Collaborations
</p>
</div>
<!-- Marque -->
<div class="marquee_css">
<marquee width="100%" onmouseover="this.stop();" onmouseout="this.start();">
<!-- Main trail of elements in marque tag -->
<div class="collab_main" >
<div class="collab_element">
<a href="https://www.hackerearth.com/" ><img style="height:200px;" src="Images/HackerEarth.png"></a>
</div>
<div class="collab_element">
<a href="https://mlh.io/"><img style="height:200px;" src="Images/MLH.jpg"></a>
</div>
<div class="collab_element">
<a href="https://codingblocks.com/"><img style="height:200px;" src="Images/CodingBlocks.jpg"></a>
</div>
<div class="collab_element">
<a href="https://www.newtonschool.co/"><img style="height:200px;" src="Images/NewtonSchool.png"></a>
</div>
<div class="collab_element">
<a href="https://reskilll.com/"><img style="height:200px;" src="Images/reskilll.jpg"></a>
</div>
<div class="collab_element">
<img style="height:200px;" src="Images/sac.png">
</div>
<div class="collab_element">
<a href="https://www.codechef.com/"><img style="height:200px;" src="Images/Code Chef.png"></a>
</div>
<div class="collab_element">
<a href="https://muj.acm.org/#/"><img style="height:200px;" src="Images/ACM MUJ.png"></a>
</div>
<div class="collab_element">
<a href="https://upesacm.org/"><img style="height:200px;" src="Images/UPESACM.png"></a>
</div>
<div class="collab_element">
<a href="https://iamtusharsharma.github.io/PrithviClubSite/"><img style="height:200px;" src="Images/Prithvi.png"></a>
</div>
<div class="collab_element">
<a href="https://engineerssuccess.com/"><img style="height:200px;" src="Images/Engineers success.png"></a>
</div>
</div>
</marquee>
</div>
<!-- Contact Us Section -->
<div class="Contactheader">
<p class="Contactt"> CONTACT US </p>
</div>
<!-- div for the map and the text below the map -->
<div class="Contactmap Contactdis">
<iframe class="Contactgmap" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3441.2657170479492!2d78.07678334971726!3d30.40020210854601!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3908d70603f128a5%3A0x359bb8f9c7797984!2sDIT%20University!5e0!3m2!1sen!2sin!4v1664716339015!5m2!1sen!2sin"></iframe>
<br>
<p id="Contactdes">ACM DITU Student Chapter,
Dit University, Mussoorie road, Makkawala, Dehradun, Uttarakhand</p>
</div>
<!-- div for the form -->
<div class="Contactform Contactdis">
<form action="#" style="display: block;">
<!-- used label for the icons inside the input boxes -->
<label clas="name-label">
<svg class="Contacticon icon-user" xmlns="http://www.w3.org/2000/svg" width="8" height="8" fill="currentColor" class="Contactbi bi-person" viewBox="0 0 16 16">
<path d="M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z"/>
</svg>
<input class="Contactinp Contactdesi" style="left: 0vw;" type="text" placeholder="Full Name">
</label>
<br>
<label clas="name-label">
<svg class="Contacticon icon-user" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-envelope" viewBox="0 0 16 16">
<path d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2Zm13 2.383-4.708 2.825L15 11.105V5.383Zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741ZM1 11.105l4.708-2.897L1 5.383v5.722Z"/>
</svg>
<input class="Contactinp Contactdesi" style="left: 0vw;" type="email" placeholder="Email Adress">
</label>
<br>
<label clas="name-label">
<svg class="Contacticon icon-user" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-telephone" viewBox="0 0 16 16">
<path d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"/>
</svg>
<input class="Contactinp Contactdesi" style="left: 0vw;" type="number" placeholder="Contact Number">
</label>
<br>
<label clas="name-label">
<svg class="Contacttextareaicon " xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="Contactbi bi-envelope" viewBox="0 0 16 16">
<path d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2Zm13 2.383-4.708 2.825L15 11.105V5.383Zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741ZM1 11.105l4.708-2.897L1 5.383v5.722Z"/>
</svg>
<textarea name="description" class="Contactinp Contactdesi" style="height: auto; left: 0vw; align-items: center;" cols="38" rows="2" placeholder="Message" ></textarea>
</label>
<br>
<input type="submit" class="Contactsubmit" value="SUBMIT" >
</form>
</div>
<!-- FAQ Section -->
<h1>F.A.Q</h1>
<h2>Frequently asked <span style="color: #1e90ff">Questions</span></h2>
<div class="accordion">
<div class="accordion-item">
<div class="accordion-item-header">How to join DITU ACM SC?</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">Join DITU ACM COntent</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-item-header">How many teams are there?</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">Teams Content</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-item-header">What are floating teams?</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">Floating teams content</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-item-header">
What does research and devlopment team do?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
Research and devlopment team content.
</div>
</div>
</div>
</div>
<!-- Membership and Footer Section -->
<!-- Counter Section-->
<div class="section-counter">
<div class="establishment-year">
<img class="counter-icon" src="images/Establishment-1.svg" alt="" />
<p class="increasing-number">2018</p>
<p class="section-title">YEAR OF ESTABLISHMENT</p>
</div>
<div class="members-count">
<img class="counter-icon" src="images/Members-1.svg" alt="" />
<p class="increasing-number">167+</p>
<p class="section-title">MEMBERS</p>
</div>
<div class="event-count">
<img class="counter-icon" src="images/Events-1.svg" alt="" />
<p class="increasing-number">90+</p>
<p class="section-title">EVENTS</p>
</div>
</div>
<!-- Membership Section -->
<div class="membership-container">
<p class="membership-content">
A vast network of nearly 100,000 highly dedicated student and
professional peers. A full year subscription to ACM magazines and news
letters. (Communications of the ACM, XRDS: Crossroads, MemberNet etc.)
The option to subscribe to the full ACM Digital Library, which includes
over 2 million pages of text. Become a member of computing community
through one of hundreds of Professional and Student Chapters worldwide.
</p>
<button class="membership-button">GET MEMBERSHIP</button>
</div>
<footer>
<div class="footer-container">
<div class="footer-top">
<div class="footer-info">
<div class="footer-logo">
<img class="footer-acm-logo" src="images/acmditu_white-2.png" />
<img
class="footer-acmw-logo"
src="images/ACM-W_dituChap_White.png"
/>
</div>
<div class="footer-about">
<p>
ACM boosts up the potential and talent, supporting the
ovedevelopment needs of our students to facilitate astructured
path from education to employment by providing thesafe and
supported space where creative talent and aimagination can
flourish in a caring the environment.
</p>
</div>
<div class="footer-social">
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-twitter"
viewBox="0 0 16 16"
>
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z"
/>
</svg>
</a>
<a href="https://www.facebook.com/acmditu/"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-facebook"
viewBox="0 0 16 16"
>
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z"
/>
</svg>
</a>
<a href="https://www.instagram.com/acmditu/"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-instagram"
viewBox="0 0 16 16"
>
<path
d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z"
/>
</svg>
</a>
<a href="#"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-youtube"
viewBox="0 0 16 16"
>
<path
d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.007 2.007 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.007 2.007 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31.4 31.4 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.007 2.007 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A99.788 99.788 0 0 1 7.858 2h.193zM6.4 5.209v4.818l4.157-2.408L6.4 5.209z"
/>
</svg>
</a>
<a href="https://www.linkedin.com/company/acmditusc/"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-linkedin"
viewBox="0 0 16 16"
>
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"
/>
</svg>
</a>
<a href="https://discord.gg/NDyqJRvS"
><svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-discord"
viewBox="0 0 16 16"
>
<path
d="M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z"
/>
</svg>
</a>
</div>
<div class="footer-connect">
<p><u>Connect with DITU ACM</u></p>
</div>
</div>
<!-- <div class="vertical-line"></div> -->
<div class="sitemap-container">
<div class="sitemap-heading">SITEMAP</div>
<div class="footer-sitemap">
<div class="sitemap-left">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Events</a></li>
</div>
<div class="sitemap-right">
<li><a href="#">Blogs</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Projects</a></li>
</div>
</div>
</div>
<!-- <div class="vertical-line"></div> -->
<div class="footer-contact">
<div class="footer-heading">
<p>GET IN TOUCH</p>
</div>
<div class="footer-detail-container">
<div class="footer-address">
<p>
Mussoorie-Diversion Road, Village Makkawala, Dehradun,
Uttarakhand-248009, India
</p>
</div>
<div class="footer-mail">
<svg
xmlns="http://www.w3.org/2000/svg"
width="22"
height="22"
fill="currentColor"
class="bi bi-envelope-fill"
viewBox="0 0 16 16"
>
<path
d="M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555ZM0 4.697v7.104l5.803-3.558L0 4.697ZM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757Zm3.436-.586L16 11.801V4.697l-5.803 3.546Z"
/>
</svg>
<a href="mailto:acmditu@gmail.com">Contact & Mailing Info</a>
</div>
<div class="footer-phone">
<svg
xmlns="http://www.w3.org/2000/svg"
width="22"
height="22"
fill="currentColor"
class="bi bi-telephone-fill"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"
/>
</svg>
<a href="tel:+918826289706">+91 8826289706</a>
</div>
<div class="footer-direction">
<svg
xmlns="http://www.w3.org/2000/svg"
width="22"
height="22"
fill="currentColor"
class="bi bi-geo-alt-fill"
viewBox="0 0 16 16"
>
<path
d="M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"
/>
</svg>
<a href="https://goo.gl/maps/9MwqcfacM52h99br5"
>Direction to Campus</a
>
</div>
</div>
</div>
</div>
<hr class="footer-bottom-border" color="white" />
<div class="footer-bottom">
<p>Copyright © 2022 All rights reserved</p>
<p></> Developed by DITU ACM SC Web Team</p>
</div>
</div>
</footer>
<script src="./Javascripts/faq.js"></script>
<script src="./Javascripts/navbar.js"></script>
</body>
</html>