-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdesign_team_page.html
645 lines (548 loc) · 25.7 KB
/
design_team_page.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
<!DOCTYPE html>
<html lang="en" style="height:0;">
<head>
<title>CCET | ACM | DESIGN</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/9732865b92.js" crossorigin="anonymous"></script>
<link
href="https://fonts.googleapis.com/css2?family=Arizonia&family=Roboto:wght@300;400;500;700;900&display=swap"
rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="../../../stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet"
href="css/animate.css%2bowl.carousel.min.css%2bowl.theme.default.min.css%2bmagnific-popup.css%2bflaticon.css%2bstyle.css.pagespeed.cc.tVkclJh8gl.css" />
<style>
/* CARDS */
.cards {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.card {
margin: 20px;
padding: 20px;
width: 500px;
min-height: 100px;
display: grid;
grid-template-rows: 20px 40px 1fr 10px;
border-radius: 10px;
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
transition: all 0.2s;
/**/
max-width: 100vw;
}
.card:hover {
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
transform: scale(1.01);
}
.services-3:hover {
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
transform: scale(1.01);
}
.card__icon {
grid-row: 1/3;
font-size: 30px;
color: #ffffff;
}
.card__title {
grid-row: 3/3;
font-size: 20px;
font-weight: 500;
color: #ffffff;
}
/* CARD BACKGROUNDS */
.card-1 {
background-color: #0077b6;
}
.card-2 {
background-color: #0077b6;
}
.card-3 {
background-color: #0077b6;
}
.card-4 {
background-color: #0077b6;
}
.card-5 {
background-color: #0077b6;
}
/* CREATIVE DESIGN */
.project-wrap::after {
background-color: #48cae4 !important;
}
.project-wrap::before {
background-color: #48cae4 !important;
}
/* RESPONSIVE */
@media (max-width: 1600px) {
.cards {
justify-content: center;
}
}
@media (max-width: 576px) {
.card {
/*max-width: 100vw;*/
max-width: 80vw;
}
}
hr {
display: block;
/* margin: 0px 0 -15px; */
/* margin: 0px 20% 0; */
margin: 0;
width: 0%;
height: 0;
border: 0;
background-color: #0077b6;
}
hr+h2.hr-text {
display: inline-block;
position: relative;
left: 50%;
margin: 0;
padding: 5px 10px;
border: 3px solid #453986;
transform: translateX(-50%);
color: #453986;
font-size: 21px;
font-weight: 800;
letter-spacing: 0.32em;
text-align: center;
background-color: #d0f4fc;
}
hr+h2.hr-text::first-letter {
margin-left: 0.32em;
}
@media (max-width: 1091px) and (min-width: 752px) {
/* div #photo1{
padding-top: 30%;
} */
img {
width: 42vw;
/* height: 70%; */
}
}
.uday h3{
opacity: 0;
}
.uday:hover h3{
opacity: 1;
}
.botn {
cursor: pointer;
margin-top: 1.5rem;
padding: 0.75rem 1.5rem;
font-size: 0.65rem;
font-weight: bold;
letter-spacing: 0.025rem;
text-transform: uppercase;
color: white;
background-color: black;
border: none;
background-image: linear-gradient(to right, #03045e,#023e8a,#0077b6 );
}
.botn:hover {
color: black;
background-image: linear-gradient(to right, #caf0f8,#90e0ee,#00b4d8 );
background-color: #0d0d0d;
}
/* drop down navabr css */
.nb {
overflow: hidden;
background-color: none;
padding-top: 10px;
box-sizing: unset;
}
.nb a {
float: left;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.dd {
float: left;
overflow: hidden;
}
.dd .db {
font-size: 16px;
/* border: 1px; */
/* border-radius: 10px; */
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.nb a:hover,
.dd:hover .db {
background-color: #48cae4;
color: black;
/* border: 1px; */
/* border-radius: 10px; */
}
.ddc {
display: none;
position: absolute;
background-color: #48cae4;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.ddc a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.ddc a:hover {
background-color: #ddd;
}
.dd:hover .ddc {
display: block;
}
.ftco-navbar-light.scrolled .nb {
/* padding-top: 1rem !important; */
/* padding-bottom: 1rem !important; */
color: #000000 !important;
}
.ftco-navbar-light.scrolled .db {
/* padding-top: 1rem !important; */
/* padding-bottom: 8px !important; */
margin-top: -8%;
color: #000000 !important;
}
</style>
</head>
<body style="background-color: #caf0f8;">
<!-- <section class="ftco-intro ftco-section" style="padding-bottom: 4%;">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 text-center">
<div class="img" style="background-image:url(images/xbg_4.jpg.pagespeed.ic.sa_zkIHi1z.jpg)">
<div class="overlay"></div>
<h2 style="font-size: 3.2em;">Website Team</h2>
<p style="font-size: 1.5em;">CCET ACM Student Chapter</p>
</div>
</div>
</div>
</div>
</section>
<section class="services-section ftco-section" style="padding-top: 0%;">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 text-center">
<h3>Intro And Illustration</h3>
</div>
</div>
</div>
</section> -->
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
<div class="container">
<a class="navbar-brand" href="index.html">
<img class="logo-b" style="width: 55%;" src="IMAGES/ccet-acm-logo-website.png" alt="CCET">
<img class="logo-w" style="width: 55%;" src="IMAGES/ccet-acm-logo-website-white.png" alt="CCET">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ftco-nav"
aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav ml-auto">
<li class="nav-item "><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-item"><a href="gallery_new.html" class="nav-link">Gallery</a></li>
<!-- <li class="nav-item"><a href="events.html" class="nav-link">Events</a></li> -->
<div class="nb">
<div class="dd">
<button class="db" style="border:none;">Events
<!-- <i class="fa fa-caret-down"></i> -->
</button>
<div class="ddc">
<a href="competitions.html">Competitions</a>
<a href="events.html">Events</a>
<!-- <a href="#" class="nav-link">Link 3</a> -->
</div>
</div>
</div>
<!-- <li class="dropdown"><a href="events.html" class="nav-link">Events</a></li>
<ul class="dropdown-content">
<li>
<a href="#">Events</a>
</li>
<li>
<a href="competitions.html">Competition</a>
</li>
</ul> -->
<!-- <li class="nav-item"><a href="2021-team.html" class="nav-link">Team</a></li> -->
<div class="nb">
<div class="dd">
<button class="db" style="border:none;">Team
<!-- <i class="fa fa-caret-down"></i> -->
</button>
<div class="ddc">
<a href="2021-team.html">Office Bearers</a>
<a href="Executive_Members.html">Executive Members</a>
<a href="Webmasters.html">Webmasters</a>
</div>
</div>
</div>
<li class="nav-item"><a href="achievements.html" class="nav-link">Achievements</a></li>
<li class="nav-item"><a href="blog.html" class="nav-link">Blog</a></li>
<li class="nav-item"><a href="#contact" class="nav-link">Contact</a></li>
<li class="nav-item"><a href="membership.html" target="blank" class="nav-link">Membership</a></li>
</ul>
</div>
</div>
</nav>
<section class="hero-wrap hero-wrap-2" style="background-image: url(IMAGES/header-photo.jpg);">
<div class="overlay"></div>
<div class="container">
<div class="row no-gutters slider-text align-items-end">
<div class="col-md-9 ftco-animate pb-5">
<p class="breadcrumbs"><span class="mr-2"><a href="index-2.html">Home <i
class="fa fa-chevron-right"></i></a></span> <span>Design Team</span></p>
<h1 class="mb-0 bread">Design Team</h1>
</div>
</div>
</div>
</section>
<section class="ftco-section ftco-faqs services-section bg-darken" style="padding-top: 1em;background-color: #caf7f8 !important;">
<div class="overlay"></div>
<div class="container col-md-10">
<h2 class="subheading" style="text-align: center; color: #03045e;font-size: 3.5em;">Benefits</h2>
<div class="row d-flex">
<div class="col-md-6 mb-5 md-md-0" id="photo1">
<div class="img w-100 mb-4" id="img1"
style="height: 90%; padding-top: 5em;position: relative; top: 10%;">
<img src="IMAGES/Vectors/design_copy.png" height="550" width="550"
style="vertical-align:middle;margin:100px 0px">
</div>
</div>
<div class="col-md-6 heading-section pl-md-5 ftco-animate d-flex align-items-center">
<div class="w-100 mb-4 mb-md-0" style="padding-top: 20%;">
<div class="heading-section heading-section-white ftco-animate text-center text-lg-left mb-4">
<!-- <span class="subheading">Benefits</span> -->
<h2 style="color: #03045e;" class="mb-5">Some of the benefits</h2>
<br>
</div>
<div class="services-3">
<h3> Multiple Specialties </h3>
<p style="font-weight: bold;"> The Design Team has and trains designers in their fields of
interest - typography, web design, illustration, user experience design and more.
</p>
</div>
<div class="services-3">
<h3> Frequent Events </h3>
<p style="font-weight: bold;">The CASC Design Team is always on their toes for some event or
competition in the design field.
</p>
</div>
<div class="services-3">
<h3> Active Group Discussions </h3>
<p style="font-weight: bold;"> The members of the Design Team are always well connected to
each other via active social media groups.
</p>
</div>
<div class="services-3">
<h3> Improved Productivity </h3>
<p style="font-weight: bold;">Teams that work together are more productive and motivated
towards their goals. The CASC Design Team is no exception to that.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section bg-lighten" style="padding-top: 3%;">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<!-- <span class="subheading">Tasks</span> -->
<h4 style="color: black; font-weight: bold;">TASKS</h4>
<h2 class="mb-4">Tasks To Complete</h2>
</div>
</div>
<div class="row">
<div class="cards">
<div class="card card-1">
<div class="card__icon" style="color:white"><i class="fas fa-bolt"></i></div>
<h3 class="card__title">
<h2 style="margin-left: -8.7%;" class="card__title"> Conducting various events and
competitions.
</h3>
</div>
<div class="card card-2">
<div class="card__icon" style="color:white"><i class="fas fa-bolt"></i></div>
<h2 class="card__title"> Designing for the ACM website.</h2>
</div>
<div class="card card-3">
<div class="card__icon" style="color:white"><i class="fas fa-bolt"></i></div>
<h2 class="card__title"> Designing the ACM Magazine.</h2>
</div>
<div class="card card-4">
<div class="card__icon" style="color:white"><i class="fas fa-bolt"></i></div>
<h2 class="card__title"> Conducting workshops to boost learning. </h2>
</div>
<div class="card card-5">
<div class="card__icon" style="color:white"><i class="fas fa-bolt"></i></div>
<h2 class="card__title"> New skills are learnt by the designers. </h2>
</div>
<!-- <div class="card card-1">
<div class="card__icon" style="color:white"><i class="fas fa-bolt"></i></div>
<h2 class="card__title">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</h2>
</div> -->
</div>
</div>
</div>
</div>
</section>
<section style="background-color: #caf0f8;">
<!-- <hr style="background-color: #453986;padding: 1px 1px 1px 1px;width:59% ; margin-bottom: -1.9%;"> -->
<hr style=" padding: 0;width:29% ; margin-bottom: -1.9%;">
<h2 class="hr-text" ;>RECENT EVENTS</h2>
</section>
<section class="ftco-section" style="padding-top: 0%; background-color: #caf0f8;">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<!-- <span class="subheading">Recent Events</span> -->
<!-- <h4 style="color: #0077b6; font-weight: bold;">RECENT EVENTS</h4> -->
<h2 class="mb-4" style="margin-top: 5%;color: #03045e;">Events Organized By The Team</h2>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-4 ftco-animate justify-content-center ">
<!-- <a href="./pdf-viewer/digital-outlet-v1i2.html"> -->
<div class="project-wrap img d-flex align-items-end uday"
style="background-image:url(IMAGES/COMPETITIONS/logo\ des\ com.jpeg)">
<div class="text">
<h3 style="color:white" ;>Logo Design Competition</h3>
</div>
</div>
</a>
</div>
<div class="col-md-4 ftco-animate">
<!-- <a href="./pdf-viewer/digital-outlet-v1i2.html"> -->
<div class="project-wrap img d-flex align-items-end uday"
style="background-image:url(IMAGES/Events/1-01.png)">
<div class="text">
<h3 style="color:white">Logo Designing in Adobe Illustrator</h3>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<div style="background-color: #caf0f8;">
<br><br><br>
</div>
<!-- ********************************** FOOTER ************************************************* -->
<footer class="ftco-footer">
<div id="contact"></div>
<div class="container">
<div class="row mb-5">
<div class="col-sm-12 col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2 logo">
<a href="#"><img style="width: 40%;" src="IMAGES/ccet-acm-logo-website-white.png"
alt="CCET LOGO"></a>
</h2>
<p>ACM boosts up the potential and talent, supporting the overall development needs of our
students to facilitate a structured path from education to employment by providing a safe
and supported space where creative talent and imagination
can flourish in a caring environment.
</p>
<ul class="ftco-footer-social list-unstyled mt-2" style="margin-left: -25%;">
<li class="ftco-animate"><a href="#"><span class="fa fa-twitter"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="fa fa-facebook"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="fa fa-instagram"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="fa fa-linkedin"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="fa fa-youtube"></span></a></li>
</ul>
</div>
</div>
<div class="col-sm-12 col-md">
<div class="ftco-footer-widget mb-4 ml-md-4">
<h2 class="ftco-heading-2" style="margin-left: 29%;">Explore</h2>
<ul class="list-unstyled">
<li class="nav-item active"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-item"><a href="2021-team.html" class="nav-link">Team</a></li>
<li class="nav-item"><a href="achievements.html" class="nav-link">Achievements</a></li>
<li class="nav-item"><a href="https://www.ccet.ac.in" class="nav-link">College Website</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-12 col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2">Contact US</h2>
<div class="block-23 mb-3">
<ul>
<li>Chandigarh College of Engineering and Technology Degree Wing Sector - 26, Chandigarh
</li>
<br>
<li><a href="https://www.ccet.ac.in">Website: www.ccet.ac.in</a></li>
</li>
</ul>
<ul>
<a href="Webmasters.html"><button class="botn">Webmasters</button></a>
<a href="magazine/magazine.html"><button class="botn" style="margin-left:30px;">Magazine</button></a>
</ul>
<!-- <ul style="display: inline;" class="ftco-footer-social list-unstyled mt-2">
<li class="ftco-animate"><a href="#"><span class="fa fa-twitter"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="fa fa-facebook"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="fa fa-instagram"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="fa fa-linkedin"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="fa fa-youtube"></span></a></li>
</ul> -->
</div>
</div>
</div>
</div>
</div>
</footer>
<div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px">
<circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee" />
<circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10"
stroke="#F96D00" />
</svg></div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js%2bpopper.min.js%2bbootstrap.min.js.pagespeed.jc.JASJvy2p6F.js"></script>
<script>eval(mod_pagespeed_rofLaRKIL4);</script>
<script>eval(mod_pagespeed_O55HKXLZnL);</script>
<script>eval(mod_pagespeed_mukP_p5mwJ);</script>
<script
src="js/jquery.easing.1.3.js%2bjquery.waypoints.min.js%2bjquery.stellar.min.js%2bowl.carousel.min.js.pagespeed.jc.YVh72QvDrB.js"></script>
<script>eval(mod_pagespeed_5LBDxQvOMp);</script>
<script>eval(mod_pagespeed_men54686W3);</script>
<script>eval(mod_pagespeed_MTpE$V0lEy);</script>
<script>eval(mod_pagespeed_c_aV2CVVmg);</script>
<script
src="js/jquery.magnific-popup.min.js%2bjquery.animateNumber.min.js%2bscrollax.min.js%2bgoogle-map.js%2bmain.js.pagespeed.jc.7Fhazwn6fd.js"></script>
<script>eval(mod_pagespeed_bW87uRdxE$);</script>
<script>eval(mod_pagespeed_KI316L8Msq);</script>
<script>eval(mod_pagespeed_t39KiUcvzC);</script>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
<script>eval(mod_pagespeed_lmdbQdpk6z);</script>
<script>eval(mod_pagespeed_TUbgfw69GQ);</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-23581568-13"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-23581568-13');
</script>
<script defer src="../../../static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"rayId":"69470d3cbec81b98","token":"cd0b4b3a733644fc843ef0b185f98241","version":"2021.8.1","si":10}'></script>
</body>
</html>