-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
1350 lines (1225 loc) · 68.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
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
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Bcurrency html5 based template.">
<meta name="keywords" content="Bcurrency, onepage, creative, html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="keywords" content="">
<title>CCET | ACM | HOME</title>
<link rel="icon" type="image/x-icon" href="assets/img/logo/favicon.png">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/all-fontawesome.min.css">
<link rel="stylesheet" href="assets/css/flaticon.css">
<link rel="stylesheet" href="assets/css/animate.min.css">
<link rel="stylesheet" href="assets/css/magnific-popup.min.css">
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/my-style.css">
<link rel="stylesheet" href="assets/css/all-fontawesome.min.css">
</head>
<style>
.slide {
width: 100%;
margin-top: 3rem;
margin-bottom: 1rem;
}
.slide img {
padding-bottom: 1rem;
}
.display-case {
height: 400px;
width: 275px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
animation: bigChungus 20s infinite;
background-image: url("./assets/img/slider/vol1.png");
margin-top: 30%;
}
@keyframes bigChungus {
0% {
background-image: url("./assets/img/slider/vol1.png");
}
25% {
background-image: url("./assets/img/slider/vol1issue2.png");
}
50% {
background-image: url("./assets/img/slider/vol1issue3.jpeg");
}
75% {
background-image: url("./assets/img/slider/vol2issue2.png");
}
100% {
backgrounde-image: url("./assets/img/slider/vol2issue1.png");
}
}
@media all and (max-width: 450px) {
.display-case {
margin-top: 0;
}
.footer-alignment {
margin-left: 0px !important;
}
}
</style>
<body>
<div class="preloader">
<div class="loader">
<div class="loader-box-1"></div>
<div class="loader-box-2"></div>
</div>
</div>
<header class="header">
<div class="main-navigation">
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/img/logo/ACM Logo Black.svg" class="logo-display" alt="logo">
<img src="assets/img/logo/ACM Logo Blue.svg" class="logo-scrolled" alt="logo">
</a>
<div class="mobile-menu-right">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#main_nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><i class="far fa-stream"></i></span>
</button>
</div>
<div class="collapse navbar-collapse" id="main_nav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item"><a class="nav-link" href="about.html"> About </a></li>
<li class="nav-item dropdown">
<a class="nav-link" href="gallery.html" data-bs-toggle="">Gallery</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" data-bs-toggle="dropdown">Events</a>
<ul class="dropdown-menu fade-up">
<li><a class="dropdown-item" href="events.html">Events</a></li>
<li><a class="dropdown-item" href="competition.html">Competition</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" data-bs-toggle="dropdown">Team</a>
<ul class="dropdown-menu fade-up">
<li><a class="dropdown-item" href="Office-bearers.html">Office bearers</a></li>
<li><a class="dropdown-item" href="Executive-members.html">Executive members</a>
</li>
<li><a class="dropdown-item" href="web-masters.html">Web Masters</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link" href="achievements.html">Achievements</a>
</li>
<li class="nav-item"><a class="nav-link" href="resources.html"> Resources </a></li>
<li class="nav-item"><a class="nav-link" href="magazine.html">Magazine </a></li>
<li class="nav-item"><a class="nav-link" href="#footer">Contact</a></li>
<li class="nav-item acm-w-nav-mobile"><a class="nav-link" href="acm-w.html">ACM-W</a></li>
</ul>
<div class="header-nav-right">
<div class="header-btn">
<a href="acm-w.html" class="theme-btn" style="width: 100px; height: 45px;">ACM-W</a>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
<main class="main">
<div class="hero-section">
<div class="hero-wrapper header-wrapper">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6 col-lg-6">
<div class="hero-content">
<h1 class="hero-title wow animate__animated animate__fadeInUp" data-wow-duration="1s"
data-wow-delay=".50s">
CCET ACM STUDENT CHAPTER
</h1>
<p class="wow animate__animated animate__fadeInUp" data-wow-duration="1s"
data-wow-delay=".75s">
Computing is not about computers, it's about living, living to solve the problems of
society using computer science.
</p>
<div class="hero-btn wow animate__animated animate__fadeInUp" data-wow-duration="1s"
data-wow-delay="1s">
<a href="https://docs.google.com/forms/d/e/1FAIpQLScwriiRgKswfp6tReRJN8t6f7PggjOFpDfYdYNmV0WfJW_0AA/viewform"
class="theme-btn" target="_blank">Get in Touch</a>
<a href="acm-w.html" class="theme-btn">ACM-W</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6">
<div class="hero-content hero-rounded-img">
<div class="slid">
<div class="slider">
<span style="--i:1;"><img src="assets/img/blog/arduino.jpeg" alt=""></span>
<span style="--i:2;"><img src="assets/img/blog/conf_ccet.jpeg" alt=""></span>
<span style="--i:3;"><img src="assets/img/blog/feature.jpeg" alt=""></span>
<span style="--i:4;"><img src="assets/img/blog/vol3issue1.png" alt=""></span>
<span style="--i:5;"><img src="assets/img/blog/sTANDEE-01.png" alt=""></span>
<span style="--i:6;"><img src="assets/img/blog/linux-yourself.jpeg"
alt=""></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hero-shape">
<img src="assets/img/shape/shape-1.png" alt="">
</div>
</div>
</div>
<div class="text-sliders">
<div class="img-slider">
<h3 class="text-center">Digital Outlet</h3>
<!-- <div class="outlet digital-outlet"></div> -->
<a href="magazine.html">
<div class="display-case" target="_blank"></div>
</a>
</div>
<div class="slide-cont">
<h3 class="slide-head">Latest Updates</h3>
<div class="slideshow-container">
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/events/cpp-stl.jpeg">
</div>
<div>
<h1>Event by Tarun and Manraj Singh on C++ STL
</h1>
<p>CCET- ACM and ACM-W student chapter is organizing an event
"C++ STL" under AICTE SPICE Scheme. In this session the audience will be guided
towards The
C++ Standard Template Library.</p>
<a href="./events.html" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/blog/vol3issue1.png">
</div>
<div>
<h1>CCET ACM Student Chapter Magazine - Volume 3 Issue 1 Launched
</h1>
<a href="./magazine.html" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/blog/feature.jpeg">
</div>
<div>
<h1>CCET ACM Student Chapter got featured on ACM India Student Chapter's Website
</h1>
<p>
CCET ACM Student Chapter got featured on ACM India Student Chapter's Website for
reporting the highest number of activities i.e. a total of 213 activities.
</p>
<a href="https://acmindia-studentchapters.in/" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/digital-twin.png">
</div>
<div>
<h1>Blog by Tarun Vats And Sudhakar Kumar on Digital Twins
</h1>
<p>The Digital Twin (DT) combines all data (operation data, tests, etc.), models
(engineering models, design drawings, analyses, etc.), and other information
(orders, inspections, requirements.) generated during the life cycle of a
physical asset to maximize economic potential.</p>
<a href="https://insights2techinfo.com/digital-twins/" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/dlt1.png">
</div>
<div>
<h1>Blog by Manraj Singh And Sudhakar Kumar on Distributed Ledger Technology
</h1>
<p>DLT (Distributed Ledger Technology) is a type of database in which records are
kept and updated across several nodes on a network in a distributed manner.
</p>
<a href="https://insights2techinfo.com/distributed-ledger-technology/" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/syscom.jpg">
</div>
<div>
<h1>Best paper award at International Conference on Smart Systems and Advanced
Computing
</h1>
<p><strong>Sudhakar Kumar</strong>, Faculty Sponsor CCET ACM Student Chapter, won
the BEST PAPER
AWARD for his paper entitled "Efficient Speculative Parallelization Architecture
for Overcoming Speculation Overheads"
</p>
<a href="./achievements.html" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/2021_highlight.png">
</div>
<div>
<h1>CCET ACM Student Chapter 2021 Highlights
</h1>
<p>The CCET ACM and ACM - W Student Chapter wishes you all a very happy
and healthy new year, full of new energies and dreams, goals and journeys.
</p>
<a href="https://youtu.be/xugIOrMbiow" class="theme-btn"
style="height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">View
Highlights</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/conf_ccet.jpeg">
</div>
<div>
<h1>CCET ACM Student Chapter is the Industry Partner for ICSPN 2022
</h1>
<p>The CCET ACM student chapter is proud to announce
that we are the Industry Partner for ICSPN 2022, International Conference on
Cyber Security, Privacy and Networking which is going to be organized during
September 09-11, 2022 in Thailand.
</p>
<a href="https://cyber-conf.com/icspn2022/" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/app.jpeg">
</div>
<div>
<h1>CCET ACM App is Here!!
</h1>
<p>The CCET ACM student chapter is proud to announce the launch of a neat and nifty
mobile application created by some whip-smart brains of the chapter. The app is
ready and is now available at Playstore.
</p>
<a href="https://play.google.com/store/apps/details?id=org.acm.ccet.acmccetappnew"
class="theme-btn"
style="width:170px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">CCET
ACM App</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/linux_copy.jpeg">
</div>
<div>
<h1>Launch of Book, Linux Yourself: Concept and Programming authored by Dr. Sunil K.
Singh
</h1>
<p>
This book is published by Chapman and Hall/CRC (Taylor & Francies Group) at Boca
Raton, Florida USA. The CCET ACM Student Chapter express its sincere gratitude
to Dr. Sunil K. Singh.
</p>
<a href="linux-launch.html" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/certificate-sudhakar.jpg">
</div>
<div>
<h1>CTiS 2021 Conference
</h1>
<p>CTis (Computational Thinking in Schools) is an
Annual Computa- tional Thinking Conference organised by ACM India and the
CSpathshala community. Faculty Sponsor CCET ACM student chapter <strong>Sudhakar
Kumar
</strong>participated in this conference and was awarded with the Certificate of
participation.
</p>
<a href="achievements.html#ctis-sudhakar" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/acm-summer-sudhakar.jpg">
</div>
<div>
<h1>ACM Summer School 2021
</h1>
<p>Compilers are pervasive and critical for any
software application to execute on any Computer System. <strong>Sudhakar
Kumar</strong> was one
of the top 50 students selected for summer school. This summer school aims at
provid- ing you a foundation in the theory and practice of optimizing compilers.
</p>
<a href="achievements.html#acm-sudhakar" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/technical_writing.jpeg">
</div>
<div>
<h1>Technical Paper Writing Contest
</h1>
<p>Insights2Techinfo in association with LoginRadius, eFeed-Hungers, InnovativeFET,
Con4com, and CCET ACM Student Chapter is going to organize a 2021 Technical
Paper Writing Contest.
</p>
<a href="https://insights2techinfo.com/2021-technical-paper-writing-contest/"
class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/MLOP_copy.png">
</div>
<div>
<h1>Blog by Muskaan Chopra And Dr. Sunil K. Singh on the trending topic MLOPs
</h1>
<p>With the interesting mix of terms “AI-ML” and “Development Operations,” MLOps is
an assortment of methods, that is utilized for AI and its life cycle
computerization and its calculations in execution.</p>
<a href="https://insights2techinfo.com/mlops-a-new-era-of-devops-powered-by-machine-learning/"
class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/Green_HPC_copy.png">
</div>
<div>
<h1>Blog by Kriti Aggarwal And Sudhakar Kumar on the topic of Green HPC’s
</h1>
<p>High performance computing (HPC) evolved as result of growing demand for
computational speed, high performance and data storage. HPC puts various
technologies like computer architecture, programming and its algorithms
and systems software on.</p>
<a href="https://insights2techinfo.com/green-hpcs-new-generation-solution-for-decreasing-energy-consumption-of-hpc-systems/"
class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/BCI_copy.jpg">
</div>
<div>
<h1>Blog by Sudhakar Kumar And Dr. Sunil K. Singh on the topic of Brain Computer
Interaction
</h1>
<p>A Brain–computer interface (BCI) is a framework that actions the movement of the
central nervous system (CNS) and converts it into fake yield that replaces,
re-establishes, upgrades, supplements, or further.</p>
<a href="https://insights2techinfo.com/brain-computer-interaction-bci-a-way-to-interact-with-brain-waves/"
class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<div class="mySlides">
<div class="slide">
<div>
<img src="assets/img/slider/Blockchain copy.png">
</div>
<div>
<h1>Blog by Sudhakar Kumar And Dipesh Singla on the topic of Blockchain for Data
Science
</h1>
<p>The Data Science industry is confronting a colossal danger to its information
security and information protection in the entirety of its chains, similar to
information assortment, Data Production, information dissecting,
and information sharing, and so forth. </p>
<a href="https://insights2techinfo.com/blockchain-for-data-science/" class="theme-btn"
style="width:150px; height: 45px; font-size: 13.9px; font-weight: 550; border-radius: 25px;">Read
More</a>
</div>
</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<script>
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) { slideIndex = 1 }
if (n < 1) { slideIndex = slides.length }
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex - 1].style.display = "block";
dots[slideIndex - 1].className += " active";
}
window.onload = function () {
setInterval(function () {
plusSlides(1);
}, 3000);
}
</script>
</div>
</div>
<div class="about-area py-120">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="about-left">
<div class="about-img">
<img src="assets/img/logo/acm-w-logo.png" alt="">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="about-right">
<div class="site-heading mb-3">
<h2 class="site-title"><span>ACM-W</span></h2>
</div>
<p class="about-text">ACM-W takes forward the torch of ACM with a special focus on women and
promotes women's involvement in the field of computer science and offers them equal
chances and a supportive atmosphere where they can collaborate to advance their skills.
</p>
<div class="about-list-wrapper">
</div>
<a href="acm-w.html" class="theme-btn">ACM-W</a>
</div>
</div>
</div>
</div>
</div>
<div class="pricing-area py-120">
<div class="container">
<div class="row g-5">
<div class="col-md-6 col-lg-4">
<div class="pricing-item">
<div class="pricing-header">
<h5></h5>
</div>
<div class="pricing-amount">
<strong>Upcoming</strong><br>
<div class="heading-divider"></div>
</div>
<div class="pricing-amount-type">
</div>
<div class="pricing-feature">
<p>
<strong>CCET- ACM and ACM-W student chapter</strong><br>
is organizing an event <br><strong>"C++ STL"</strong> under AICTE SPICE Scheme.
<br><br>
07 January 2023
<br>
(07:00 P.M)
</p>
</div>
<div class="pricing-footer">
<a href="events.html" class="theme-btn">Read More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="pricing-item">
<div class="pricing-header">
</div>
<div class="pricing-amount">
<strong>Achievements</strong><br>
<div class="heading-divider"></div>
</div>
<div class="pricing-amount-type">
</div>
<div class="pricing-feature">
<p>One Day Online Workshop on National Education Policy (NEP-2020)
on the Topic "Technology Use and Integration". <br><br>
<strong>Technology Use and Integration</strong><br><br>
</p>
</div>
<div class="pricing-footer">
<a href="achievements.html" class="theme-btn">Read More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="pricing-item">
<div class="pricing-header">
</div>
<div class="pricing-amount">
<strong>Previous</strong><br>
<div class="heading-divider"></div>
</div>
<div class="pricing-amount-type">
</div>
<div class="pricing-feature">
<p>CCET- ACM and ACM-W student chapter is organizing an event
<strong>"Let us C Programming"</strong>under AICTE SPICE Scheme.
Concepts, such as introduction, functions, pointers, and structures,|
will be the main focus of the session.
</p>
</div>
<div class="pricing-footer">
<a href="events.html" class="theme-btn">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mentors">
<h1>OUR <span>MENTORS</span></h1>
<div class="ourmen">
<div class="ment">
<div class="img">
<img src="assets/img/testimonial/msgujral-01 copy.png">
</div>
<h3>Dr. Manpreet Singh</h3>
<div class="heading-divider"></div><br>
<strong class="desig" style="color: #03020a;">Principal CCET<br>Degree Wing</strong>
<p>Our mission at CCET is not only to produce engineering graduates but to produce
engineering
minds.</p>
</div>
<div class="ment">
<div class="img">
<img src="assets/img/testimonial/sk_singh-01 copy.png">
</div>
<h3>Dr. Sunil K. Singh</h3>
<div class="heading-divider"></div><br>
<strong class="desig" style="color: #03020a;">Professor and HOD, CSE
<br>Faculty Mentor</strong>
<p>ACM CCET provides student a great opportunity to learn scientific and practical approach
of
computer science.</p>
</div>
<div class="ment">
<div class="img">
<img src="assets/img/testimonial/sudhakar_kumar-01 copy.png">
</div>
<h3>Sudhakar Kumar</h3>
<div class="heading-divider"></div><br>
<strong class="desig" style="color: #03020a;">Assistant Professor, CSE
<br>Faculty Sponsor</strong>
<p>ACM CCET provides every person with an opportunity to learn, heighten and explore the
field
of computer science.</p>
</div>
<div class="ment">
<div class="img">
<img src="assets/img/testimonial/saurabh.png">
</div>
<h3>Saurabh Pratap Singh</h3>
<div class="heading-divider"></div><br>
<strong class="desig" style="color: #03020a;">Assistant Commissioner<br>of Income Tax</strong>
<p>The ACM CCET offers students a fantastic opportunity to master computer science using a
scientific and practical approach.</p>
</div>
</div>
</div>
<div class="counter-area">
<div class="container">
<div class="row">
<div class="col-lg-4 col-sm-6">
<div class="counter-box">
<div class="icon"><i class="flaticon-writing"></i></div>
<span class="counter" data-count="+" data-to="2015" data-speed="3000">2015</span>
<h6 class="title">Year of Establishment</h6>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="counter-box">
<div class="icon"><i class="fa fa-person-booth"></i></div>
<span class="counter" data-count="+" data-to="137" data-speed="3000">137</span>
<h6 class="title">+ Number of Students</h6>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="counter-box">
<div class="icon"><i class="fa fa-newspaper"></i></div>
<span class="counter" data-count="+" data-to="96" data-speed="3000">96</span>
<h6 class="title">+ Events</h6>
</div>
</div>
</div>
</div>
</div>
<div class="case-area py-120">
<div class="container">
<div class="row">
<div class="col-lg-6 mx-auto">
<div class="site-heading text-center">
<h2 class="site-title">OUR <span>INITIATIVES</span></h2>
<div class="heading-divider"></div>
</div>
</div>
</div>
<div class="row filter-box popup-gallery">
<div class="col-md-6 col-lg-4 filter-item cat1 cat2">
<div class="case-item">
<div class="case-img">
<img class="img-fluid" src="assets/img/case/coding_copy.svg" alt="">
</div>
<div class="case-content">
<div class="case-content-info">
<h4><a href="./coding_team_page.html">Coding and Hackathons</a></h4>
</div>
<a href="./coding_team_page.html" target="_blank" class="case-arrow"><i
class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 filter-item cat2 cat3">
<div class="case-item">
<div class="case-img">
<img class="img-fluid" src="assets/img/case/website_copy.svg" alt="">
</div>
<div class="case-content">
<div class="case-content-info">
<small></small>
<h4><a href="./website_team_page.html">Web Development</a></h4>
</div>
<a href="./website_team_page.html" target="_blank" class="case-arrow"><i
class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 filter-item cat3 cat4 cat5">
<div class="case-item">
<div class="case-img">
<img class="img-fluid" src="assets/img/case/design_copy.svg" alt="">
</div>
<div class="case-content">
<div class="case-content-info">
<small></small>
<h4><a href="./design_team_page.html">Design and Digital Art</a></h4>
</div>
<a href="./design_team_page.html" target="_blank" class="case-arrow"><i
class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 filter-item cat2 cat4">
<div class="case-item">
<div class="case-img">
<img class="img-fluid-1" src="assets/img/case/student speaker-02-1.svg" alt="">
</div>
<div class="case-content">
<div class="case-content-info">
<small></small>
<h4><a href="./events.html">Student Speaker Program</a></h4>
</div>
<a href="./events.html" target="_blank" class="case-arrow"><i
class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 filter-item cat1 cat4 cat5">
<div class="case-item">
<div class="case-img">
<img class="img-fluid" src="assets/img/case/project_copy.svg" alt="">
</div>
<div class="case-content">
<div class="case-content-info">
<small></small>
<h4><a href="./project_team_page.html">Research and Projects</a></h4>
</div>
<a href="./project_team_page.html" target="_blank" class="case-arrow"><i
class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 filter-item cat4 cat3">
<div class="case-item">
<div class="case-img">
<img class="img-fluid" src="assets/img/case/career (2).svg" alt=""
style="height: 370px;">
</div>
<div class="case-content">
<div class="case-content-info">
<small></small>
<h4><a href="#">Internship and Career Opportunities</a></h4>
</div>
<a href="#" class="case-arrow"><i class="far fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="choose-area bg py-120" style="background-color: #fff;">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="choose-content">
<div class="site-heading mb-3">
<h2 class="site-title my-3"><a target="_blank" rel="noopener noreferrer">ACM
MEMBERSHIP</a>
</h2>
</div>
<br>
<h3>Membership Benefits</h3>
<br>
<p style="text-align: justify;">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. Participation in
ACM Distinguished Speakers Program (DSP).Renowned International Thought Leaders Speaking
on the Most Important Topics in Computing Today. Unique volunteering opportunities to
gain hands-on experience and knowledge of the marketplace
</p>
<br>
<a href="https://www.acm.org/" class="theme-btn">Learn More</a>
</div>
</div>
<div class="col-lg-6">
<div class="choose-img">
<img src="assets\img\about/about01.png" alt="">
</div>
</div>
</div>
</div>
</div>
<div class="testimonial-area bg py-120" style="background-color: #fff;">
<div class="container">
<div class="row">
<div class="col-lg-6 mx-auto">
<div class="site-heading text-center">
<span class="site-title-tagline">Testimonials</span>
<h2 class="site-title">What our Executives have to <span>Say</span></h2>
<div class="heading-divider"></div>
</div>
</div>
</div>
<div class="testimonial-slider owl-carousel owl-theme">
<div class="testimonial-single">
<div class="testimonial-quote">
<span class="testimonial-quote-icon"><i class="fal fa-quote-left"></i></span>
<p>
CCET ACM Student chapter is a group of people with similar interests and goals
in
computer science. Together, this platform focuses on the growth and development
at
not
only personal but professional level also as it has a unique learning
environment.
It
provides everyone an opportunity to learn something new.
</p><br>
</div>
<div class="testimonial-content">
<div class="testimonial-author-img">
<img src="assets/img/testimonial/AKASH.jpg" alt="">
</div>
<div class="testimonial-author-info">
<h4>Akash Sharma</h4>
<p>Chairperson</p>
</div>
</div>
</div>
<div class="testimonial-single">
<div class="testimonial-quote">
<span class="testimonial-quote-icon"><i class="fal fa-quote-left"></i></span>