-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
816 lines (706 loc) · 35.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>SHE</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!--testimonials-->
<link rel="stylesheet" href="testimonials/fonts/icomoon/style.css">
<link rel="stylesheet" href="testimonials/css/bootstrap.min.css">
<link rel="stylesheet" href="testimonials/css/owl.carousel.min.css">
<link rel="stylesheet" href="testimonials/css/style.css">
<!-- Favicons -->
<link href="assets/img/favicon.ico" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Ranchers&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Poppins&display=swap"
rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/upcoming.css">
<link href="assets/css/news.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/initiatives.css">
<link rel="stylesheet" href="assets/css/imageslider.css">
</head>
<!-- ======= Header ======= -->
<header name="header" id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<a href="index.html"><img style="border-radius:50%" src="assets/img/logo.jpg" alt="" class="img-fluid"></a>
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active over"><a href="index.html">Home</a></li>
<li class="drop-down over"><a href="">About</a>
<ul>
<li class="drop-down over"><a href="execom_2024.html">Our Team</a>
<ul>
<li><a href="execom_2024.html">Execom 2024-25</a></li>
<li><a href="execom_2023.html">Execom 2023-24</a></li>
<li><a href="execom_2022.html">Execom 2022-23</a></li>
<li><a href="execom_2021.html">Execom 2021-22</a></li>
<li><a href="execom_2020.html">Execom 2020-21</a></li>
</ul>
</li>
<li class="drop-down over"><a href="ourinitiatives.html">Our Initiatives</a>
<ul>
<li class="drop-down over"><a href="Seize_It_2024.html">SEIZE IT!</a>
<ul>
<li><a href="Seize_It_2024.html">2024-25</a></li>
<li><a href="Seize_It_2023.html">2023-24</a></li>
<li><a href="Seize_It.html">2022-23</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="https://www.youtube.com/channel/UCVuoABpmOItxsfA4edwEGZA">You Tube</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</li>
<li class="drop-down over"><a href="#">Events</a>
<ul>
<li class="drop-down over"><a href="events_2024.html">2024-25</a>
<ul>
<!--
<li><a href="we4u.html">WE4U Award 2024</a></li>
<li><a href="https://shegcek.github.io/meet-and-greet/">MEET and GREET</a></li>
<li><a href="events_2023.html#matlab">Introduction to MATLAB</a></li>
<li><a href="events_2023.html#python">Introduction to Python</a></li>
<li><a href="events_2023.html#raspberry">RASPBERRY based system design</a></li>
<li><a href="SHE_Coders_2023.html">SHE Coders</a></li>
<li><a href="events_2023.html#devweb3.0">DEV WEB 3.0</a></li>
<li><a href="events_2023.html#canva2023">Hands on Canva Workshop</a></li>
<li><a href="events_2023.html#scholarspotlight">Scholar Spotlight</a></li>
<li><a href="events_2023.html#E4E2.0">E4E 2.0</a></li>
<li><a href="events_2023.html#unitreasuretrek">Uni Treasure Trek</a></li>
<li><a href="events_2023.html#inisheate2023">Inisheate</a></li>
<li><a href="events_2023.html#resumify">Resumify your future</a></li>
<li><a href="events_2023.html#bond&beyond">Bond & Beyond</a></li>
<li><a href="events_2023.html#letschatgpt">Let's CHATGPT</a></li>
<li><a href="events_2023.html#E4E">E4E Phase2</a></li> -->
<li><a href="events_2024.html">iniSHEate</a></li>
<li><a href="events_2024.html">Resume writing workshop</a></li>
<li><a href="events_2024.html">Digital Literacy</a></li>
<li><a href="SHE_Coders_2024.html">SHE Coders</a></li>
<li><a href="ignite5.0.html">IGNITE 5.0</a></li>
</ul>
</li>
<li class="drop-down over"><a href="events_2023.html">2023-24</a>
<ul>
<li><a href="we4u.html">WE4U Award 2024</a></li>
<li><a href="https://shegcek.github.io/meet-and-greet/">MEET and GREET</a></li>
<li><a href="events_2023.html#matlab">Introduction to MATLAB</a></li>
<li><a href="events_2023.html#python">Introduction to Python</a></li>
<li><a href="events_2023.html#raspberry">RASPBERRY based system design</a></li>
<li><a href="SHE_Coders_2023.html">SHE Coders</a></li>
<li><a href="events_2023.html#devweb3.0">DEV WEB 3.0</a></li>
<li><a href="events_2023.html#canva2023">Hands on Canva Workshop</a></li>
<li><a href="events_2023.html#scholarspotlight">Scholar Spotlight</a></li>
<li><a href="events_2023.html#E4E2.0">E4E 2.0</a></li>
<li><a href="events_2023.html#unitreasuretrek">Uni Treasure Trek</a></li>
<li><a href="events_2023.html#inisheate2023">Inisheate</a></li>
<li><a href="events_2023.html#resumify">Resumify your future</a></li>
<li><a href="events_2023.html#bond&beyond">Bond & Beyond</a></li>
<li><a href="events_2023.html#letschatgpt">Let's CHATGPT</a></li>
<li><a href="events_2023.html#E4E">E4E Phase2</a></li>
<li><a href="ignite4.0.html">IGNITE 4.0</a></li>
</ul>
</li>
<li class="drop-down over"><a href="events_2022.html">2022-23</a>
<ul>
<!-- <li><a href="#">Ignite4.0</a></li>
<li><a href="#">Final Fling</a></li> -->
<li><a href="events_2022.html#webitup">WEBITUP</a></li>
<li><a href="events_2022.html#devweb21">Dev-Web 2.1</a></li>
<li><a href="SHE_Coders.html">SHE Coders</a></li>
<li><a href="we4u.html">WE4U Award 2023</a></li>
<li><a href="events_2022.html#E4E">E4E</a></li>
<li><a href="events_2022.html#ICE">Innovate, Create & Elevate</a></li>
<li><a href="events_2022.html#gateandbeyond">Gate and Beyond</a></li>
<li><a href="events_2022.html#devweb20">DEV WEB 2.0</a></li>
<li><a href="events_2022.html#gamesnblues">Games 'N Blues</a></li>
<li><a href="State_Level_Launch.html">State Level Launch</a></li>
<li><a href="Let's_Lead.html">Let's Lead</a></li>
</ul>
</li>
<li class="drop-down over"><a href="events_2021.html">2021-22</a>
<ul>
<li><a href="events_2021.html#Cancer">Cancer Awareness</a></li>
<li><a href="events_2021.html#CyberSecurityAwareness">Cyber Security Awareness</a></li>
<li><a href="events_2021.html#iniSHEate">iniSHEate</a></li>
<li><a href="She_talks.html">Make Way For Scholars</a></li>
<li><a href="SHE_Coders.html">SHE Coders</a></li>
<li><a href="events_2021.html#canva">Workshop On Canva</a></li>
<li><a href="events_2021.html#felicitation">Felicitation Ceremony</a></li>
<li><a href="events_2021.html#agettogether">A Get-Together </a></li>
<li><a href="we4u.html">WE4U Award 2022</a></li>
<li><a href="events_2021.html#leap">LEAP</a></li>
<li><a href="events_2021.html#aloha">ALOHA</a></li>
<li><a href="ignite3.0.html">IGNITE 3.0</a></li>
<li><a href="events_2021.html#investiture">Investiture Ceremony</a></li>
</ul>
</li>
<li class="drop-down over"><a href="events.html">2020-21</a>
<ul>
<li><a href="ignite.html">Ignite 2021</a></li>
<li><a href="devweb.html"><Dev-Web></a></li>
<li><a href="Lockdown_series.html">Lockdown Talk Series</a></li>
<li><a href="weforwe.html">WE for WE</a></li>
<li><a href="events.html#Getfitwithshe">Get Fit With SHE</a></li>
<li><a href="events.html#icebreaking">Icebreaking Session</a></li>
<li><a href="events.html#lead">Lead the Leaders</a></li>
<li><a href="events.html#web">Web Dev Bootcamp</a></li>
</ul>
</li>
</ul>
</li>
<li class="drop-down over"><a href="updates.html">Updates</a>
<ul class="under">
<li><a href="updates.html#calendar">Calendar</a></li>
<li><a href="updates.html#notifications">Notifications</a></li>
<li><a href="updates.html#achievements">Achievements</a></li>
</ul>
</li>
<li class="over"><a href="#footer">Contact</a></li>
<li class="drop-down under"><a href="">Resources</a>
<ul class="under">
<li><a href="https://www.youtube.com/channel/UCVuoABpmOItxsfA4edwEGZA">Youtube Videos</a></li>
</ul>
</li>
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="container text-center" style="min-height:410px;">
<div class="row">
<div data-aos="zoom-out" style="margin: 90px auto auto auto;">
<h1 style="letter-spacing: 2px;"><span>SHE GCEK</span></h1>
<h2 style="line-height:1.1;margin: auto;padding-bottom: 20px;">Scheme for Her Empowerment</h2>
</div>
</div>
</div>
<svg class="hero-waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 24 150 28 " preserveAspectRatio="none">
<defs>
<path id="wave-path" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z">
</defs>
<g class="wave1">
<use xlink:href="#wave-path" x="50" y="3" fill="rgba(255,255,255, .1)">
</g>
<g class="wave2">
<use xlink:href="#wave-path" x="50" y="0" fill="rgba(255,255,255, .2)">
</g>
<g class="wave3">
<use xlink:href="#wave-path" x="50" y="9" fill="#fff">
</g>
</svg>
</section><!-- End Hero -->
<!-- ======= About Section ======= -->
<section id="about" class="about" name="about">
<div class="container-fluid" style="padding: 0 5%; text-align: justify;">
<div class="row">
<div class="col-xl-5 col-lg-6 d-flex" data-aos="fade-right">
<!-- <div id="slider">
<input type="radio" name="slider" id="s1" checked>
<input type="radio" name="slider" id="s2">
<input type="radio" name="slider" id="s3">
<input type="radio" name="slider" id="s4">
<input type="radio" name="slider" id="s5">
<label for="s1" id="slide1">
</label>
<label for="s2" id="slide2">
</label>
<label for="s3" id="slide3">
</label>
<label for="s4" id="slide4">
</label>
<label for="s5" id="slide5">
</label>
</div> -->
<video class="vdo1" style="width: 100%; margin: auto;" poster="assets\img\she_gcek_thumbnail.jpg" controls>
<source src="assets\videos\SHE_GCEK.mp4" type="video/mp4">
Your browser does not support HTML video.
</video>
</div>
<div
class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5"
data-aos="fade-left">
<h3>What is SHE?</h3>
<p>The program Scheme for Her Empowerment in Engineering education (SHE) is initiated at GCE Kannur which was
the change project undertaken under AICTE- UKERI scheme. On identification of the burning need of empowering
the girl students of GCE Kannur, it was decided to take a more assertive role in imparting them the exposure
and experience they need to eventually fulfill their career demands and to assume leadership roles facing all
challenges. The SHE program proposes to enable our girl students to realize how much potential and support
they require to be great leaders in technical fields. The coordinators of SHE program have well identified the
value of our resourceful alumni and have ensured their fruitful participation in gathering suggestions and
information. The other promising contributors to the program are the teaching fraternity of GCEK, resource
persons from external agencies and experts from different walks of life. The SHE program also seeks all the
support from PTA and the HRD Cell of GCEK.</p>
<div class="icon-box" data-aos-delay="100">
<div class="icon"><i class="bx bx-show"></i></div>
<h4 class="title">Our Vision</h4>
<p class="description">To create professionally successful and personally fulfilled women engineers.</p>
</div>
<div class="text-center " style="padding-top: 20px;">
<a href="whatisshe.html" class="btn-get-started knowmore">Know More</a>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!--
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<div class="container">
<h4 class="title" ><a href="">Our Vision</a></h4>
<p class="description">To create professionaly successful and personally fulfilled women engineers.</p>
</div>
</div>
-->
<section id="services">
<div class="section-title icon-boxes" data-aos="fade-up" style="margin: 0 auto 0 auto;text-align: left;">
<h3>Our Initiatives</h3>
</div>
<div
class="row row-cols-1 row-cols-sm-3 row-cols-md-3 row-cols-lg-5 row-cols-xl-5 pt-3 initiatives d-flex justify-content-center">
<div class="col">
<a href="ourinitiatives.html#shecoders">
<div class="card deep ml-1 mr-1" data-aos="fade-up">
<div class="overlay"></div>
<div class="circle">
<img class="services-img" src="assets/img/she_coders.jpg" loading="lazy">
</div>
<h3 class="heading-of-services" style="font-family:Poppins">SHE CODERS</h3>
</div>
</a>
</div>
<div class="col">
<a href="ourinitiatives.html#onlinecourse">
<div class="card bigdata ml-1 mr-1" data-aos="fade-up">
<div class="overlay"></div>
<div class="circle">
<img class="services-img" src="assets/img/online course.jpg" loading="lazy">
</div>
<h3 class="heading-of-services" style="font-family:Poppins">ONLINE COURSE</h3>
</div>
</a>
</div>
<div class="col">
<a href="ourinitiatives.html#wenext">
<div class="card image ml-1 mr-1" data-aos="fade-up">
<div class="overlay"></div>
<div class="circle">
<img class="services-img" src="assets/img/we next.jpg" loading="lazy">
</div>
<h3 class="heading-of-services we" style="font-family:Poppins">WENEXT : IGNITE</h3>
<br>
</div>
</a>
</div>
<div class="col">
<a href="ourinitiatives.html#mentorship">
<div class="card iot ml-1 mr-1" data-aos="fade-up">
<div class="overlay"></div>
<div class="circle">
<img class="services-img" src="assets/img/mentor connect.jpg" loading="lazy">
</div>
<h3 class="heading-of-services we" style="font-family:Poppins">WE CONNECT : MENTOR CONNECT</h3>
</div>
</a>
</div>
<div class="col">
<a href="Lockdown_series.html">
<div class="card robotics ml-1 mr-1" data-aos="fade-up">
<div class="overlay"></div>
<div class="circle">
<img class="services-img" src="assets/img/talk series.jpg" loading="lazy">
</div>
<h3 class="heading-of-services we" style="font-family:Poppins">LOCKDOWN TALK SERIES</h3>
</div>
</a>
</div>
<div class="col">
<a href="She_opportunities.html">
<div class="card deep ml-1 mr-1" data-aos="fade-up">
<div class="overlay"></div>
<div class="circle">
<img class="services-img" src="assets/img/she-opportunity.jpg" loading="lazy">
</div>
<h3 class="heading-of-services" style="font-family:Poppins">SHE OPPORTUNITIES</h3>
</div>
</a>
</div>
<div class="col">
<a href="we4u.html">
<div class="card deep ml-1 mr-1" data-aos="fade-up">
<div class="overlay"></div>
<div class="circle">
<img class="services-img" src="assets/img/we4.jpg" loading="lazy">
</div>
<h3 class="heading-of-services" style="font-family:Poppins">WE4U</h3>
</div>
</a>
</div>
</div>
</section>
<!-- upcoming -->
<!-- <section id="upcoming-events">
<h2 class="upcomingtitle" data-aos="fade-up"
style="width: 100%;margin:0 auto;padding:60px 10px 0 10px;line-height:1.3;text-align: center;">Upcoming Events</h2>
<<div class="blog">
<div class="blog-post">
<div class="row">
<div class="col-xl-12 col-lg-12 upcomingimg5 d-flex justify-content-center align-items-stretch"
data-aos="fade-left">
</div>
<div
class="eventcontent col-xl-12 col-lg-12 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5"
data-aos="fade-right">
<div class="blog-post-date">
</div>
<h1 class="blog-post-title">MEET AND GREET - Gear up for an overnight camp</h1>
<p class="blog-post-text">
Attention Please!!
<strong style="font-weight: bold;">MEET AND GREET, an exclusive event tailored for the vibrant girls.
This one-day residential camp on March 1&2 at Government College of Engineering, Kannur offers an unforgettable experience filled with sisterhood,
self-discovery and personal growth.Through engaging activities,attendees will unlock their potential, nurture creativity, and forge lasting bonds
with fellow participants.
<br>
<br>
<strong style="font-weight: bold;">Event Highlights </strong><br>
🔸 Leadership <br>
🔸 Professional Excellence <br>
🔸 Creative activities <br>
🔸 Networking opportunities <br>
🔸 Empowering discussions <br>
🔸 Fun and Fellowship <br>
<br>
<strong style="font-weight: bold;"> 🗓️ Date :</strong> March 1&2, 2024 <br>
<!-- <strong style="font-weight: bold;"> ⏰ Time :</strong> 6:30 PM IST <br>
<br>
Opportunities never come twice. So grab it before it leaves you✨ <br>
Open to all engineering students and aspirants! -->
<!-- </p>
<div class="text-center " style="padding-top: 20px;">
<a href="meetandgreet.html" target="_blank" class="btn-get-started knowmore">Know more..
</a>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="blog">
<div class="blog-post">
<div class="row">
<div class="col-xl-5 col-lg-6 upcomingimg1 d-flex justify-content-center align-items-stretch"
data-aos="fade-right">
</div>
<div
class="eventcontent col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5"
data-aos="fade-left">
<div class="blog-post-date">
</div>
<h1 class="blog-post-title">WE4U 3.0</h1>
<p class="blog-post-text">
"Brains, like hearts, go where they are appreciated." ~Robert McNamara, Fmr.
To appreciate you and your hard work, we SHEGCEK is here with another exciting, WE4U 3.0.
<br>
<br>
Scheduled dates: <br>
<strong style="font-weight: bold;">▪️ Call for Nominations:</strong> 13 February 2023<br>
<strong style="font-weight: bold;">▪️ Deadline for Nominations:</strong> 23 February 2023<br>
<strong style="font-weight: bold;">▪️ Finalist Announcement:</strong> 25 February 2023<br>
<strong style="font-weight: bold;">▪️ Presentation and Panel discussion for the shortlisted
candidates:</strong> 4 March 2023<br>
<strong style="font-weight: bold;">▪️ Winner Announcement:</strong> 8 March 2023<br>
<br>
Submit your nominations through the link provided in the brochure.
<br>
<br>
</p>
</div>
</div>
</div>
</div> -->
<!-- <div class="blog">
<div class="blog-post">
<div class="row">
<div
class="eventcontent col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5"
data-aos="fade-right">
<div class="blog-post-date">
</div>
<h1 class="blog-post-title">WEB DEVELOPMENT BOOTCAMP</h1>
<p class="blog-post-text">
Do you wish to learn a new skills? Then come let's upskill ourselves,
<br>
<br>
<strong style="font-weight: bold;">SHE GCEK</strong> presents you a Bootcamp on <strong
style="font-weight: bold;">Web Development </strong>with our alumnus for the vibrant girls of GCEK.
Join us to learn and practice basics of webdevelopment and improve your skills.
<br>
</p>
</div>
<div class="col-xl-5 col-lg-6 upcomingimg2 d-flex justify-content-center align-items-stretch"
data-aos="fade-left">
</div>
</div>
</div>
</div> -->
</section>
<div class="container-fluid" style="padding: 0 2%; text-align: justify;">
<!-- Info -->
<section class="grid-row-1 grid-row--center" id="onlinecourse" style="padding: 30px;">
<!-- Teepees -->
<div class="grid-column pt3 pb3 mobile-m order-4" style="padding-bottom: 0px;" data-aos="fade-right">
<h2 class="upcomingtitle" data-aos="fade-up"
style="width: 100%;margin:0 auto;padding:2% 1% 0 1%;line-height:1.3;text-align: center;">TEAM SHE-GCEK
</h2>
<p class="para" style="text-align: justify;font-family:Poppins, sans-serif; ">
<br>
<div name="testimonials-section" class="site-section testimonial-wrap custom-owl-carousel"
id="testimonials-section" style="font-family:Josefin Sans; padding-top: 0%;">
<!-- <h2 class="upcomingtitle" data-aos="fade-up"
style="width: 100%;margin:0 auto;padding:60px 10px 0 10px;line-height:1.3;text-align: center; color: #5B7263;">LET'S LEAD</h2> -->
<div class="container test-container" style="padding-top: 1%;">
<div class="row align-items-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-12 mr-auto" style="padding-top:1px">
<div class="owl-carousel slide-one-item-alt"
style="border-radius: 0px; padding-bottom: 0%; width: 100%; height: auto; margin: auto;">
<img src="assets/img/SHEGCEK_TEAM.jpg" alt="Image" class="#">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!--testimonials-->
<div name="testimonials-section" class="site-section testimonial-wrap custom-owl-carousel" id="testimonials-section"
style="font-family:Poppins; padding-top: 0.5%;">
<div class="container test-container">
<div class="row align-items-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-6 ml-auto" data-aos="fade-up" data-aos-delay="100">
<div class="owl-carousel slide-one-item-alt">
<img src="testimonials/images/Rajani.jpg" alt="Image" class="img-fluid">
<img src="testimonials/images/sudhakar.jpg" alt="Image" class="img-fluid">
<img src="testimonials/images/vandana.jpg" alt="Image" class="img-fluid">
<img src="testimonials/images/A Ranjith Ram.jpg" alt="Image" class="img-fluid">
<img src="testimonials/images/sreekumar.jpg" alt="Image" class="img-fluid">
<img src="testimonials/images/daina.jpg" alt="Image" class="img-fluid">
<img src="testimonials/images/liyana.jpg" alt="Image" class="img-fluid">
</div>
<div class="owl-custom-direction">
<a href="#" class="custom-prev"><span class="icon-keyboard_arrow_left"></span></a>
<a href="#" class="custom-next"><span class="icon-keyboard_arrow_right"></span></a>
</div>
</div>
<div class="col-lg-5 mr-auto" style="padding-top:40px">
<div class="owl-carousel slide-one-item-alt-text">
<div class="slide-text">
<blockquote>
<p style="font-family: 'Poppins', sans-serif;color:darkslategray"><span>“</span><b>It has always
bothered me how a lot of women around us drop out halfway through their career, due to various
reasons. SHE GCEK aims to find those reasons and takes steps to solve them.</b> They’re a group of
wonderful girls who support and raise each other up. I would like to wish them the best in all their
future endeavours!<span>”</span></p>
<p class="author" style="font-family: 'Poppins', sans-serif;">—Dr V O Rejini<br>Principal GCEK
</p>
</blockquote>
</div>
<div class="slide-text">
<blockquote>
<p style="font-family: 'Poppins', sans-serif;color:darkslategray"><span>“</span><b>Whom do you
admire most is a question one faces often.</b> For me, it is not someone who has reached a position of
eminence.<b> For me, it is a person who is trying each day to become a better person the next day. I
find that SHE is devoted to this idea.</b> That makes each and everyone of SHEs a person I
admire.<span>”</span></p>
<p class="author" style="font-family: 'Poppins', sans-serif;">—Prof. K Sudhakar <br>Mentor of ‘AI
for Everyone’ learning group
</p>
</blockquote>
</div>
<div class="slide-text">
<blockquote>
<p style="font-family: 'Poppins', sans-serif;color:darkslategray"><span>“</span><b>SHE resonates
with our responsibility to pave a better road for the future of the girls in engineering education ,
ensuring their meritocracy, hardwork , and perseverance in scaling the
heights.</b><span>”</span></p>
<p class="author" style="font-family: 'Poppins', sans-serif;">—Dr Vandana Sreedharan<br>Coordinator
</p>
</p>
</blockquote>
</div>
<div class="slide-text">
<blockquote>
<p style="font-family: 'Poppins', sans-serif;color:darkslategray"><span>“</span>Woman empowerment
program namely SHE, founded in GCE Kannur aims at skill development, capacity building and motivation of
woman engineers. <b>The objective is to enable girl students to be successful in life, not just having
some sort of good academic performance in the campus. </b>She should repeat her success stories
throughout, at the same time battle against bottle-necks.<span>”</span></p>
<p class="author" style="font-family: 'Poppins', sans-serif;">—Prof Ranjith Ram<br>Supporting
Faculty</p>
</blockquote>
</div>
<div class="slide-text">
<blockquote>
<p style="font-family: 'Poppins', sans-serif;color:darkslategray"><span>“</span>The inevitable
realization that the women empowerment can only ensure a holistic progress in society, was the core idea
in implementing the change management project ‘SHE’ in GCEK. <b>SHE is planned to be such an initiative
to educate and train our academically excellent girl students of GCEK to become self developed,
motivated and skilled leaders</b> capable of igniting and sustaining team work to envisage excellence
in Engineering.
<span>”</span>
</p>
<p class="author" style="font-family: 'Poppins', sans-serif;">—Prof Sreekumar<br>Supporting Faculty
</p>
</blockquote>
</div>
<div class="slide-text">
<blockquote>
<p style="font-family: 'Poppins', sans-serif;color:darkslategray"><span>“</span>I have had the
fortune to be part of this journey from the beginning. It is good and satisfying to see the students
work towards their goal. The various relentless initiatives from different students and alumni to make
this program a success is commendable.
<b>I would like to tell all the upcoming students , you have this opportunity served in a silver platter
to you. Grab it and keep honing and improving your skills on a continuous basis.</b>
Your are limited by your dream. Dream of having a successful and exemplary career.
Wishing all the best to all the students .<span>”</span>
</p>
<p class="author" style="font-family: 'Poppins', sans-serif;">—Daina Emmanuel<br>She Coders Mentor
</p>
</blockquote>
</div>
<div class="slide-text">
<blockquote>
<p style="font-family: 'Poppins', sans-serif;color:darkslategray"><span>“</span>It has been a
delight to be a part of SHE since its inception and to see SHE grow and spread her wings wide. I believe
that your aspirations are defined by your exposure and your support system - at its core,<b> SHE aims to
build a community of women who can push each other to aim high, and to make what felt like the
impossible seem possible, on top of building each individual’s capability.</b> I think we're on
track.<span>”</span></p>
<p class="author" style="font-family: 'Poppins', sans-serif;">—Liyana Sahir<br>Student Coordinator
</p>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- News notifications -->
<section class="portfolio">
<div class="container">
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/calender.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h2 style="color:rgb(168, 35, 41);">Calender</h2>
</div>
<div class="portfolio-links">
<a href="updates.html#calender"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/notifications.jpeg" class="img-fluid" alt="">
<div class="portfolio-info">
<h2 style="color:rgb(168, 35, 41)">Notifications</h2>
</div>
<div class="portfolio-links">
<a href="updates.html#notifications"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/faq.jpeg" class="img-fluid" alt="">
<div class="portfolio-info">
<h2 style="color: rgb(168, 35, 41)">FAQ</h2>
</div>
<div class="portfolio-links">
<a href="faq.html"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<a href="#" class="back-to-top"><i class="bx bxs-up-arrow-alt"></i></a>
<!-- ======= Footer ======= -->
<footer id="footer" style="font-family: 'Poppins', sans-serif;" name="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-4">
<div class="footer-info">
<h3>SHE GCEK</h3>
<img src="assets/img/GCEK_LOGO.png" class="gcek_logo logo mr-auto">
<img src="assets/img/logo.jpg" class="gcek_logo logo mr-auto" style="margin-left:10px ;">
<p>
Govt. College Of Engineering<br>
Mangattuparamba, Parassinikkadavu (P.O)<br>
Kannur-670 563, Kerala, India.
<br>
<strong>Email:</strong> shegcek@gmail.com<br>
</p>
<div class="social-links mt-3">
<a href="https://www.facebook.com/shegcek/?rc=p" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://www.instagram.com/she_gcek/?hl=en" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="https://www.linkedin.com/company/she-gcek" class="linkedin"><i class="bx bxl-linkedin"></i></a>
<a href="https://medium.com/@shegcek" class="medium"><i class="bx bxl-medium"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-4 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="index.html">Home</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#about">About us</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="events.html">Events</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="updates.html#notifications">Notifications</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="faq.html">FAQ</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#testimonials-section">Testimonials</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong><span></span></strong>. All Rights Reserved
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/counterup/counterup.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<!-- Template Main JS File news-->
<script src="testimonials/js/jquery-3.3.1.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
<script src="testimonials/js/owl.carousel.min.js"></script>
<script src="assets/js/news.js"></script>
<script src="testimonials/js/main.js"></script>
</body>
</html>