-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
967 lines (865 loc) · 45.3 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
<!doctype html>
<html lang="en">
<!-- Mirrored from upesacm.org/ by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 17 Jun 2020 13:27:45 GMT -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>UPES ACM-W Student Chapter</title>
<link rel="icon" href="img/logoacm.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/themify-icons.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/slick.css">
<link rel="stylesheet" href="css/all.css">
<link href="https://fonts.googleapis.com/css?family=Oswald|Poppins|Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/button_effects.css">
<script src="../kit.fontawesome.com/522aed4c91.js" crossorigin="anonymous"></script>
</head>
<style>
#chat,
#chat:after,
.chatbox {
transition: all 0.4s ease-in-out;
}
#chat,
#close-chat,
.minim-button,
.maxi-button,
.chat-text {
font-weight: 700;
cursor: pointer;
font-family: Arial, sans-serif;
text-align: center;
height: 20px;
line-height: 20px;
}
#chat,
#close-chat,
.chatbox {
border: 1px solid #a8a8a8;
}
#chat:after,
#chat:before {
position: absolute;
border-style: solid;
content: "";
}
.chatbox {
position: fixed;
bottom: 0px;
right: 5px;
margin: 0 0 -2500px;
background: #fff;
border-bottom: none;
padding: 28px 10px 10px;
z-index: 100000;
}
#close-chat {
position: absolute;
top: 2px;
right: 2px;
font-size: 24px;
border: none;
width: 20px;
color: #ff003b;
z-index: 2;
}
#minim-chat,
#maxi-chat {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 20px;
line-height: 20px;
cursor: pointer;
z-index: 1;
}
.minim-button {
position: absolute;
top: 2px;
right: 26px;
font-size: 24px;
border: 1px solid #dedede;
width: 20px;
background: #fefefe;
}
.maxi-button {
position: absolute;
top: 2px;
right: 26px;
font-size: 24px;
border: 1px solid #dedede;
width: 20px;
background: #fefefe;
}
.chat-text {
position: absolute;
top: 5px;
left: 10px;
font-size: 16px;
}
#chat {
width: 40px;
border-radius: 3px;
padding: 2px 8px;
font-size: 12px;
background: #fff;
-webkit-transform: translateZ(0);
transform: translateZ(0);
top: -10px;
}
#chat:before {
border-width: 10px 11px 0 0;
border-color: #a8a8a8 transparent transparent;
left: 7px;
}
#chat:after {
border-width: 9px 8px 0 0;
border-color: #fff transparent transparent;
left: 8px;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
}
10%,
20% {
-webkit-transform: scale(0.9)rotate(-3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale(1.1)rotate(3deg);
}
40%,
60%,
80% {
-webkit-transform: scale(1.1)rotate(-3deg);
}
100% {
-webkit-transform: scale(1)rotate(0);
}
}
@keyframes tada {
0% {
transform: scale(1);
}
10%,
20% {
transform: scale(0.9)rotate(-3deg);
}
30%,
50%,
70%,
90% {
transform: scale(1.1)rotate(3deg);
}
40%,
60%,
80% {
transform: scale(1.1)rotate(-3deg);
}
100% {
transform: scale(1)rotate(0);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
}
@-webkit-keyframes hvr-pulse-grow {
to {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
}
@keyframes hvr-pulse-grow {
to {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
}
#aaa {
width: 100%;
height: 100%;
}
@media only screen and (min-width: 1224px) {
#chatt {
width: 60vh;
height: 80vh;
}
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
#chatt {
width: 40vh;
height: 70vh;
}
}
#btn {
position: fixed;
/* Fixed/sticky position */
bottom: 15px;
/* Place the button at the bottom of the page */
right: 25px;
/* Place the button 30px from the right */
z-index: 99;
/* Make sure it does not overlap */
border: none;
/* Remove borders */
outline: none;
/* Remove outline */
background-color: #9b84f4;
/* Set a background color */
color: white;
/* Text color */
cursor: pointer;
/* Add a mouse pointer on hover */
padding: 8px;
/* Some padding */
border-radius: 50%;
/* Rounded corners */
height: 50px;
width: 50px;
font-size: 2vh;
/* Increase font size */
}
.navbar-light .navbar-nav .active>.nav-link {
text-shadow: 4px 3px 4px #80808055;
}
</style>
<body>
<!--::header part start::-->
<header class="main_menu home_menu">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="index-2.html"> <img style="width:150px;display:block;" src="img/ACM.png" alt="logo"> </a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse main-menu-item justify-content-center" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item active ">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active ">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item active ">
<a class="nav-link" href="gallery.html">Gallery</a>
</li>
<!-- <li class="nav-item active ">
<a class="nav-link" target="_blank" href="csr/index.html">CSR</a>
</li> -->
<!-- <li class="nav-item active ">
<a class="nav-link" href="team.html">Events</a>
</li> -->
<li class="nav-item active ">
<a class="nav-link" target="_blank" href="https://konfhub.com/checkout/upesacm-acmw-registration?ticketId=8618">Membership</a>
</li>
<li class="nav-item active ">
<a class="nav-link" href="team.html">Team</a>
</li>
<li class="nav-item active ">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</header>
<!-- Header part end-->
<button style="" id="btn" class="animated-chat tada" onclick="loadChatbox()"><i class="fas fa-comment-dots fa-2x"></i></button>
<div class="chatbox" id="chatbox">
<script>
//<![CDATA[
document.write('<div style=" overflow: hidden; margin: auto; padding: 0;">');
document.write('<div id="chatt" style=" overflow: hidden; margin: auto; padding: 0; border:0; ">');
document.write('<iframe id="aaa" allow="microphone" src="https://console.dialogflow.com/api-client/demo/embedded/bbabf463-56fc-44ba-b29a-cc75660f320f" scrolling="no" frameborder="0" style="border:0; margin:0; padding: 0;" allowfullscreen>');
document.write('</iframe></div></div>');
//]]>
</script>
<div id="close-chat" onclick="closeChatbox()">×</div>
<div id="minim-chat" onclick=""></div>
<div id="maxi-chat" onclick="loadChatbox()"><span class="maxi-button">+</span></div>
</div>
<script>
//<![CDATA[
function loadChatbox() {
var e = document.getElementById("minim-chat");
e.style.display = "block";
var e = document.getElementById("maxi-chat");
e.style.display = "none";
var e = document.getElementById("chatbox");
e.style.margin = "0";
}
function closeChatbox() {
var e = document.getElementById("chatbox");
e.style.margin = "0 0 -1500px 0";
}
function minimChatbox() {
var e = document.getElementById("minim-chat");
e.style.display = "none";
var e = document.getElementById("maxi-chat");
e.style.display = "block";
var e = document.getElementById("chatbox");
e.style.margin = "0 0 -51vh 0";
}
//]]>
</script>
<!-- banner part start-->
<section class="banner_part">
<div class="hero-image">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-xl-6 col-md-6">
<div class="banner_text">
<div class="banner_text_iner text-center banner_one">
<h3>WELCOME TO </h3><br>
<h2>UPES ACM-W</h2>
<a href="https://konfhub.com/checkout/upesacm-acmw-registration?ticketId=8618" target="_blank" class="nbutton">Become a Member<i class="ti-angle-right"></i> </a>
</div>
</div>
</div>
<div class="col-xl-6 col-md-6">
<div class="banner_bg banner_two">
<img src="img/index_bg.png" alt="banner" style="-webkit-filter: saturate(8); filter: saturate(1.4);">
</div>
</div>
</div>
</div>
</div>
<div class="hero-app-1 custom-animation"><img src="img/animate_icon/icon_1.png" alt=""></div>
<div class="hero-app-5 custom-animation2"><img src="img/animate_icon/icon_3.png" alt=""></div>
<div class="hero-app-7 custom-animation3"><img src="img/animate_icon/icon_2.png" alt=""></div>
<div class="hero-app-8 custom-animation"><img src="img/animate_icon/icon_4.png" alt=""></div>
</section>
<!-- banner part start-->
<!-- about part start-->
<section class="about_part">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-lg-5">
<div class="about_img">
<img src="img/group.jpg" class="img-responsive img_1" alt="ACM_TEAM">
<h2>The Largest Computing<br> Society, now at UPES</h2>
</div>
</div>
<div class="offset-lg-1 col-lg-4">
<div class="about_text">
<h3 style="color:#795CC1">About</h3>
<h2>WE ARE UPES ACM-W STUDENT CHAPTER</h2>
<h4 align="justify">UPES ACM-W is an associated student chapter established 5 years after UPES ACM, with the prime objective of empowering women in technology while promoting practical technological knowledge in young university students.</h4>
<p align="justify"> We work round-the-clock to hone the adroit programmer in our girl members through many events, workshops, fests, contests, and talks all year long. Our student body is headed by confident and proficient members who work seamlessly for this cause. </p>
<a href="about.html" class="nbutton">LEARN MORE<i class="ti-angle-right"></i> </a>
</div>
</div>
</div>
</div>
<div class="hero-app-7 custom-animation"><img src="img/animate_icon/icon_7.png" alt=""></div>
<div class="hero-app-8 custom-animation2"><img src="img/animate_icon/icon_4.png" alt=""></div>
<div class="hero-app-6 custom-animation3"><img src="img/animate_icon/icon_5.png" alt=""></div>
</section>
<!-- about part ENDS-->
<!-- cta part start-->
<section class="cta_part ">
<div class="container" style="margin-top:-80px;">
<div class="row align-items-center">
<div class="col-lg-12">
<div class="cta_part_iner">
<div class="cta_part_text">
<h1>INITIATIVES</h1>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- cta part end-->
<!-- initiative_part part start-->
<section class="service_part section_bg_2 section_padding">
<div class="container">
<div class="row">
<div class="col-lg-3 col-sm-6">
<div class="single_service_part">
<div class="single_service_part_iner">
<span><i class="fas fa-chalkboard-teacher"></i></span>
<h3>21 Days Of Code</h3>
<p>We launched 21 Days of Code to promote the environment for competitive programming and instil coding as second nature and a daily habit for 21 regular days. Every year, we witness active programmers come along with the spirit to learn, code and practice. </p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="single_service_part">
<div class="single_service_part_iner">
<span><i class="fas fa-laptop-code"></i></span>
<h3>CODE ANYTIME</h3>
<p>Code Anytime is our round-the-year initiative to encourage free-spirited coding among beginners to amplify their passion for programming.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="single_service_part">
<div class="single_service_part_iner">
<span><i class="fab fa-cuttlefish"></i></span>
<h3>SPY-C</h3>
<p>SPY-C is an initiative to build the core foundation of programming and aid students in overcoming their dread of programming by perfecting their knowledge of the C language through the help of their seniors.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="single_service_part">
<div class="single_service_part_iner">
<span><img src="img/CSR31.png"></span>
<h3>Hour Of Code</h3>
<p>The CSR team puts their words to action, and brings smiles across the faces of the underprivileged society. The team parts education in the most exciting manner and makes the activities as interactive and intriguing as possible.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- initiative_part part end-->
<!-- service_part start-->
<section class="our_latest_work section_padding">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="single_work">
<div class="row align-items-center">
<div class="offset-lg-1 col-lg-4 col-md-6">
<div class="single_work_demo">
<h2 style="color:#795CC1">Achievements</h2>
<ul>
<li>
<h4>Best Student Chapter Award for Outstanding Community Service - 2021</h4>
- Awarded by ACM India<br>
</li><br>
<li>
<h4>Student Chapter Excellence Award Winners for Outstanding Chapter Activities - 2020</h4>
<p> - Awarded by ACM International</p>
</li><br>
<li>
<h4>Best Student Chapter Award (Runner Up) - 2016</h4>
<p> - Awarded by ACM India</p>
</li><br>
</ul>
</div>
</div>
<div class="offset-lg-1 col-lg-6 col-md-6">
<div class="demo_img">
<img src="img/animate_icon/achievments.gif" class="img-responsive" alt="demo">
</div>
</div>
</div>
</div>
<!-- <div class="single_work">
<div class="row align-items-center">
<div class="col-lg-6 col-md-6">
<div class="demo_img">
<img src="img/CSR%20Collage.jpg" class="img-responsive" alt="demo">
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_work_demo">
<h2 style="color:#00a6ff">Corporate Social Responsibility</h2>
<h3 align="justify">“Talent wins games, but teamwork and intelligence win championships.” <br> ― Michael Jordan</h3>
<p align="justify">On June 15th, the CSR Team of UPES ACM-W visited the Kalyan Smiti, an NGO in Delhi, conducting an event outside of Dehradun for the very first time. The team of volunteers taught high school girls about the basics of
computers and various other application software during two highly interactive sessions. It was an enlightening session filled with knowledge and fun. The session was a complete success due to the efforts of the
various volunteers and the Heads, but the key to our success was the enthusiasm of the girls who were bright, engaging and eager to learn. We were encouraged to walk on our chosen path by Kalyan Smiti, a dedicated
NGO. </p>
<a href="csr/index.html" class="nbutton" target="_blank">LEARN MORE<span class="ti-angle-right"></span> </a>
</div>
</div>
</div>
</div> -->
<!-- <div class="single_work">
<div class="row align-items-center">
<div class="offset-lg-1 col-lg-4 col-md-6">
<div class="single_work_demo">
<h2 style="color:#00a6ff">Code Anytime</h2>
<h3>“Everybody in this country should learn to program a computer, because it teaches you how to think” <br> ― Steve Jobs</h3>
<p align="justify">Code anytime, an initiative augmented by UPES ACM and ACM-W in an effort to develop a coding culture within campus. It's an open minded atmosphere where there is room for error and ample opportunities to learn. In lieu
of a student-teacher dynamic, we've chosen to build an environment where students themselves are pushed to harness their inner coder. They are encouraged to come forward with any programming language related queries,
get their doubts cleared and master the language. There are no barriers; anyone and everyone is welcome. It's a platform where everyone is provided with the opportunity to code, learn and grow
</p>
</div>
</div>
<div class="offset-lg-1 col-lg-6 col-md-6">
<div class="demo_img">
<img src="img/meet.jpg" class="img-responsive" alt="demo">
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
</section>
<!-- upcoming_event part start-->
<!-- happy_client counter start -->
<section class="happy_client">
<div class="container">
<div class="row new-row">
<div class="col-lg-3 col-sm-6">
<div class="single_happy_client">
<img src="img/icon/balloons.svg" alt="cap">
<span class="counter ">2015</span>
<h4>YEAR<br>OF ESTB.</h4>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="single_happy_client">
<img src="img/icon/award.svg" alt="cap">
<span class="counter">3</span>
<h4 style="margin-left: -20px">AWARDS<br>WON</h4>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="single_happy_client">
<img src="img/icon/team.svg" alt="cap">
<span class="counter">550</span>
<h4>HAPPY<br>MEMBERS</h4>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="single_happy_client">
<img src="img/icon/tea.svg" alt="cap">
<span class="counter">900</span>
<h4>CUPS<br>OF COFFEE</h4>
</div>
</div>
</div>
</div>
</section>
<!-- happy_client counter end -->
<!--::review_part start::-->
<section class="review_part padding_top">
<div class="container-fluid" style="margin-top:-50px;">
<div class="row justify-content-center">
<div class="col-lg-5">
<div class="section_tittle text-center">
<h1>See what our Executives have to say</h1>
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-lg-5">
<div class="intro_video_bg">
<div class="intro_video_iner text-center">
<div class="intro_video_icon">
<a id="play-video_1" class="video-play-button popup-youtube" href="https://www.youtube.com/watch?v=99CM7sUsnT0">
<span class="ti-control-play"></span>
</a>
</div>
<p>We are ACM</p>
</div>
</div>
</div>
<div class="col-md-8 col-lg-5">
<div class="review_text_item">
<div class="row">
<div class="col-lg-7 col-sm-8">
<div class="owl-carousel owl-theme" id="sync2">
<div class="owl-thumb-item">
<div class="slider-thumbnails">
<img src="img/comment/sachi.jpg" alt="slideimg" class="image" style="border-radius: 50%;">
</div>
</div>
<div class="owl-thumb-item">
<div class="slider-thumbnails">
<img src="img/comment/aashisha1.jpg" alt="slideimg" class="image" style="border-radius: 50%;">
</div>
</div>
<div class="owl-thumb-item">
<div class="slider-thumbnails">
<img src="img/comment/Riddhi1.jpg" alt="slideimg" class="image" style="border-radius: 50%;">
</div>
</div>
<!-- <div class="owl-thumb-item">
<div class="slider-thumbnails">
<img src="img/comment/arjunsinghahluwalia.jpg" alt="slideimg" class="image" style="border-radius: 50%;">
</div>
</div>
<div class="owl-thumb-item">
<div class="slider-thumbnails">
<img src="img/comment/ayushkumar.jpg" alt="slideimg" class="image" style="border-radius: 50%;">
</div>
</div> -->
<div class="owl-thumb-item">
<div class="slider-thumbnails">
<img src="img/comment/Kavya.jpg" alt="slideimg" class="image" style="border-radius: 50%;">
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="slider owl-carousel owl-theme" id="sync1">
<div class="client_review_text">
<p align="justify">It has been 5 years since I joined UPES ACM-W, and these past few years have been exciting and extremely successful for us. We have won several national and international awards for our hard work. Our annual event,
Prodigy, has been a massive success for the past five years and I'm proud to say that UPES ACM hasn't ever hesitated from helping whenever possible, which can be seen in our outstanding CSR events and the collaborations
we have. Being a part of ACM ensures that everyone can showcase what they're good at and constantly evolve. We strive to create a better environment for our members with every action of ours.</p>
<h4>Mrs. Sachi Chaudhary</h4>
<h5>Faculty Sponsor, UPES ACM-W</h5>
<div align="right" class="client_info">
</div>
</div>
<div class="client_review_text">
<p align="justify">I have been associated with the chapter since my first year in college. It's been almost three years now, and the journey has been great. From being the core committee member to the Joint Event Head and now representing the chapter as the Chairperson, has been really wonderful. UPES ACM & ACM-W is not only a student chapter but a family that brings the best out of you. We organize a variety of events ranging from technical, fun-tech and gaming events. Our coding initiatives such as the 21 Days of Code, Code Anytime and Spy-C have had great impact on the university students. We aim at coming together, being dedicated, growing together and contributing to the technical fraternity for the years to come.</p>
<h4>Aashisha Negi</h4>
<h5>Chairperson, UPES ACM-W</h5>
<div align="right" class="client_info">
</div>
</div>
<div class="client_review_text">
<p align="justify">Over the course of two years, my involvement with the UPES ACM-W Student Chapter has been an invaluable and transformative experience. The chapter, has provided me with numerous opportunities for growth, learning, and networking within the field of computer science.
It has fostered a supportive and inclusive community for women in computing. Through regular meetings, workshops, and events, the chapter has created a space where I felt comfortable expressing my ideas, asking questions. Furthermore, the chapter has emphasized the importance of professional development and leadership skills.</p>
<h4>Riddhi Jain</h4>
<h5>Vice Chairperson, UPES ACM-W</h5>
<div align="right" class="client_info">
</div>
</div>
<!-- <div class="client_review_text">
<p align="justify">UPES ACM isn't only a student chapter ,but a family to me. I'm thankful to have been part of the chapter and I can feel the difference in me. I'm sure it will benefit everyone out there as much as possible and you
will gain from everyone on this gathering. You'll not get the same improving background and the superb open doors anywhere else.
<h4>Arjun Singh Ahluwalia</h4>
<h5>Secretary, UPES ACM</h5>
<div align="right" class="client_info">
</div>
</div>
<div class="client_review_text">
<p align="justify">UPES ACM defines my fervor, my enthusiasm and my inquisitiveness towards my college life. Over the years it has been like an important part and parcel of my life without which I wouldn't enjoy my college life. Here
you not only grow technically but also professionally, you get guidance and you mold yourself accordingly for a better cause. UPES ACM tends to bring the best within you which is why it is the best Student Chapter
in UPES. </p>
<h4>Ayush Kumar</h4>
<h5>Joint-Secretary, UPES ACM</h5>
<div class="client_info">
</div>
</div> -->
<div class="client_review_text">
<p align="justify">When I was exposed to ACM and the ACM-W student organisation at UPES, my programming career had just started. Where I used to frequently get confused between the fundamentals of coding, activities like 21 Days of Code, Code Anytime, and Spy C increased my confidence in coding, that’s when I decided to continue my career with ACM and the ACM-W student chapter.
Being a part of ACM-W gives me a great deal of pleasure because what more could you ask for from a student chapter than a chapter that teaches you a lot about your skill, and not just the skill, but how to deal with public relations, how to organise events as a team, and much more.
I'm happy to be a part of this vibrant student chapter.</p>
<h4>Kavya Chugh</h4>
<h5>Treasurer, UPES ACM</h5>
<div align="right" class="client_info">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--::blog_part end::-->
<!-- cta part start-->
<!-- <section class="cta_part">
<div class="container" style="margin-top:-50px;">
<div class="row align-items-center">
<div class="col-lg-12">
<div class="cta_part_iner">
<div class="cta_part_text">
<h1>ACM Executives</h1>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- cta part end-->
<!-- team_member part start-->
<!-- <section class="team_member_section section_padding">
<div class="container">
<div class="row">
<div class="col-lg-4 col-sm-6">
<div class="single_team_member">
<img src="img/executives/pankajbadonisir.jpg" style="height: 240px; object-fit: cover; object-position: 50% 20%;" alt="">
<div class="single_team_text">
<h3><a href="#">Pankaj Badoni</a></h3>
<p>Faculty Sponsor</p>
<div class="social_icon">
<a target="_blank" href="https://www.linkedin.com/in/pankaj-badoni-64b7979b"> <i class="ti-linkedin"></i> </a>
<a target="_blank" href="https://www.instagram.com/badoni18pankazzz"> <i class="ti-instagram"></i> </a>
<a target="_blank" href="https://www.facebook.com/toni.badoni"> <i class="ti-facebook"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="single_team_member">
<img src="img/executives/sanskritipandey.jpg" style="height: 240px; object-fit: cover; object-position: 50% 20%;" alt="">
<div class="single_team_text">
<h3><a href="#">Sanskriti Pandey</a></h3>
<p> Chairperson, UPES ACM</p>
<div class="social_icon">
<a target="_blank" href="https://www.linkedin.com/in/sanskriti-pandey-995296186/"> <i class="ti-linkedin"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="single_team_member">
<img src="img/executives/tejastrivedi.jpg" style="height: 240px; object-fit: cover; object-position: 50% 20%;" alt="">
<div class="single_team_text">
<h3><a href="#">Tejas Trivedi</a></h3>
<p> Vice Chairperson, UPES ACM</p>
<div class="social_icon">
<a target="_blank" href="https://www.linkedin.com/in/tejas-trivedi-02b991194/"> <i class="ti-linkedin"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="single_team_member">
<img src="img/executives/arjunsinghahluwalia.jpg" style="height: 240px; object-fit: cover; object-position: 50% 20%;" alt="">
<div class="single_team_text">
<h3><a href="#">Arjun Singh Ahluwalia</a></h3>
<p> Secretary, UPES ACM</p>
<div class="social_icon">
<a target="_blank" href="https://www.linkedin.com/in/arjun-ahluwalia-504271121/"> <i class="ti-linkedin"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="single_team_member">
<img src="img/executives/ayushkumar.jpg" style="height: 240px; object-fit: cover; object-position: 50% 50%;" alt="">
<div class="single_team_text">
<h3><a href="#">Ayush Kumar</a></h3>
<p> Joint Secretary, UPES ACM</p>
<div class="social_icon">
<a target="_blank" href="https://www.linkedin.com/in/ayush-kumar-2665811b2/"> <i class="ti-linkedin"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="single_team_member">
<img src="img/executives/riddhisingh.jpg" style="height: 240px; object-fit: cover; object-position: 50% 20%;" alt="">
<div class="single_team_text">
<h3><a href="#">Riddhi Singh</a></h3>
<p> Treasurer, UPES ACM</p>
<div class="social_icon">
<a target="_blank" href="https://www.linkedin.com/in/riddhi-singh-12aba1102/"> <i class="ti-linkedin"></i> </a>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- maps part end-->
<!-- <section class="service_part section_bg_2 section_padding">
<div class="cta_part_text">
<h1 style="text-align:center; padding-bottom: 60px; color: white; font-weight: 700; font-size: 40px;">Our Location</h1>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3440.710862751274!2d77.9646442148849!3d30.415944281748757!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3908d4890d7c1735%3A0x22d3ae324c238e3c!2sUniversity%20of%20Petroleum%20and%20Energy%20Studies%20-%20UPES!5e0!3m2!1sen!2sin!4v1584886323810!5m2!1sen!2sin"
width="100%" height="250" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</section> -->
<!-- maps part end-->
<!-- footer part start-->
<footer class="footer-area">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="copyright_part_text text-center" style="margin-top: -100px;">
</div>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-between">
<div class="col-sm-6 col-md-6 col-xl-3">
<div class="single-footer-widget footer_1">
<a href="#"> <img src="img/logoacm.png" style="height: 180px; width: 280px" alt="UPES-ACM"> </a>
</div>
</div>
<div class="col-sm-6 col-md-6 col-xl-4">
<div class="single-footer-widget footer_2">
<p style="color:aliceblue">
<h4 style="color:aliceblue">Visit Us</h4>
<p style="color:aliceblue">UPES Energy Acres,<br> Bidholi,
<br>Dehradun-248007, Uttarakhand, India</p>
</p>
<div class="social_icon">
<a href="https://www.facebook.com/upesacmw/"> <i class="ti-facebook"></i> </a>
<a href="https://twitter.com/upesacm?lang=en"> <i class="ti-twitter-alt"></i> </a>
<a href="https://www.instagram.com/upesacmwomen/"> <i class="ti-instagram"></i> </a>
<a href="https://www.youtube.com/channel/UCaUFOX5cSycV23KhG_WEsag"> <i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
<div class="col-sm-12 col-md-8 col-xl-3">
<div class="single-footer-widget footer_3">
<h4>Instagram</h4>
<div class="footer_img">
<div class="single_footer_img">
<img src="img/instagram/21doc.jpg" alt="">
<a href="https://www.instagram.com/p/Ct_bfN8PwNZ/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==" target="_blank"><i class="ti-instagram"></i></a>
</div>
<div class="single_footer_img">
<img src="img/instagram/exec.jpg" alt="">
<a href="https://www.instagram.com/p/CtyyCkdPLTy/?utm_source=ig_web_copy_link&igshid=MzRlODBiNWFlZA==" target="_blank"><i class="ti-instagram"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="copyright_part_text text-center">
<div class="row">
<div class="col-lg-12">
<p class="footer-text m-0">
Copyright ©
<script>
document.write(new Date().getFullYear());
</script> All rights reserved | Designed and Developed by UPES ACM-W Web Development Team </a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- footer part end-->
<!-- jquery plugins here-->
<!-- jquery -->
<script src="js/jquery-1.12.1.min.js"></script>
<!-- popper js -->
<script src="js/popper.min.js"></script>
<!-- bootstrap js -->
<script src="js/bootstrap.min.js"></script>
<!-- easing js -->
<script src="js/jquery.magnific-popup.js"></script>
<!-- swiper js -->
<script src="js/swiper.min.js"></script>
<!-- swiper js -->
<script src="js/masonry.pkgd.js"></script>
<!-- particles js -->
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.counterup.min.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/owl.carousel2.thumbs.min.js"></script>
<!-- swiper js -->
<script src="js/slick.min.js"></script>
<!-- custom js -->
<script src="js/custom.js"></script>
</body>
<!-- Mirrored from upesacm.org/ by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 17 Jun 2020 13:28:12 GMT -->
</html>