-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
808 lines (767 loc) · 32.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-162398295-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-162398295-2');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IEEE Student Branch | DAIICT</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link
href="https://cdn.jsdelivr.net/npm/boxicons@2.0.5/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/icofont.min.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/animate.css" />
<link rel="stylesheet" href="./css/copy.css" />
<link rel="stylesheet" href="./css/footer.css" />
<link rel="icon" href="./img/ieee.ico" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- ======= Header ======= -->
<button type="button" class="mobile-nav-toggle d-lg-none">
<i class="icofont-navigation-menu"></i>
</button>
<header id="header" class="fixed-top animated fadeInDown delay-1s">
<div class="container d-flex">
<div class="logo mr-auto">
<h1 class="text-light">
<a href="index.html"
><span><img src="./img/ieee.PNG" alt="" srcset="" /></span
></a>
</h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="#header">Home</a></li>
<li><a href="./chapters.html">Chapters</a></li>
<li><a href="./timeline.html">Timeline</a></li>
<li><a href="./gallery.html">Gallery</a></li>
<li><a href="./team.html">EXECOMM</a></li>
<li><a href="./grantapp.html">Grant App</a></li>
<li><a href="./members.html">IEEE Members</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./history.html">History</a></li>
</ul>
</nav>
<!-- .nav-menu -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="hero">
<div class="hero-container animated fadeIn delay-1s" data-aos="fade-up">
<h1>IEEE Student Branch</h1>
<h2>
DAIICT
</h2>
<a href="#services" class="btn-get-started scrollto"
><i class="bx bx-chevrons-down"></i
></a>
</div>
</section>
<!-- End Hero -->
<a href="#header" class="btn-get-started scrollto backtotop"
><i class="bx bx-chevrons-up"></i
></a>
<!-- ======= Services Section ======= -->
<!-- <section id="services" class="services bb-5">
<div class="container">
<div class="section-title" data-aos="fade-in" data-aos-delay="100">
<h2 class="animated pulse infinite">Updates</h2>
<p>
Latest updates from IEEE Student Branch, DAIICT
</p>
</div>
<div class="row wow fadeInUp">
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up">
<div class="icon"><i class="bx bx-network-chart"></i></div>
<h4 class="title"><a href="http://ieee.daiict.ac.in/ss21/" target="blank">Summer School' 21</a></h4>
<p class="description">
The event will take place from <strong>4th to 6th and 12th to 13th June</strong> on the domain of <strong>Data Science and Machine Learning</strong>.
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="bx bx-laptop"></i></div>
<h4 class="title"><a href="http://ifest.daiict.ac.in/#home" target="blank">i.Fest' 20</a></h4>
<p class="description">
i.Fest'20 is going to be conducted virtually from <strong>20th to 22nd November</strong> spread across the theme <strong>"A Virtual Voyage"</strong>.
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="bx bx-file"></i></div>
<h4 class="title"><a href="">Instagram Live</a></h4>
<p class="description">
In talks with
<strong>Hitesh Choudhary</strong> on
<strong>How to improve Tech Skills</strong>. Check below for more information...
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="bx bx-world"></i></div>
<h4 class="title"><a href="">Best Student Branch Award</a></h4>
<p class="description">
IEEE Student Branch, DAIICT has been again awarded the Best
Student Branch in IEEE Gujarat Section
</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Services Section -->
<!-- ======= Webinar Section ======= -->
<section id="webinarsection" class="webinarsection mt-5">
<div class="container webinars-container">
<div class="text-center">
<h1>Recent Events</h1>
</div>
<center>
<div
class="row my-flex d-flex flex-row flex-wrap justify-content-around">
<!-- event 1 -->
<div id="event1" class="col-lg-4">
<div class="card text-center event-card my-3">
<img
src="./img/home_page_cards/summer_school_22.webp"
class="card-img-top border-dark"
width = "100%"
/>
<div class="card-body justify-content-center p-4">
<h4 class="card-title">
Summer School 2022
</h4>
<p class="card-text">
<!-- <p class="card-text" style="max-height: 15rem;"> -->
A Workshop on Deep Learning and the Basics of Neural Networks conducted by Industry Professionals.
<br /><br />
<strong>Date</strong>: 11th to 12th and 18th to 19th June 2022 <br />
<!-- <strong>This event has been ended.</strong> <br/> -->
<a href="viewmore_ss22.html"
><strong>View More</strong></a
><br />
</p>
</div>
</div>
</div>
<!-- end of event1 -->
<!-- event 2 -->
<div id="event1" class="col-lg-4">
<div class="card text-center event-card my-3">
<img
src="./img/home_page_cards/robotics.webp"
class="card-img-top border-dark"
width = "0%"
/>
<div class="card-body justify-content-center p-4">
<h4 class="card-title">
Manual Robotics Workshop
</h4>
<p class="card-text" style="max-height: 15rem;">
A Hands-on Workshop on creating and designing RC cars and testing them on a racing track.
<br /><br />
<strong>Date</strong>: 5th April, 2022 <br />
<strong>Time</strong> : 7 PM <br />
<a href="./viewmore_robotics.html"
><strong>View More</strong></a
>
</p>
</div>
</div>
</div>
<!-- end of event2 -->
</div>
<div
class="row my-flex d-flex flex-row flex-wrap justify-content-around"
>
<!-- event 1 -->
<div id="event1" class="col-lg-4">
<div class="card text-center event-card my-3">
<img
src="./img/home_page_cards/hacking.webp"
class="card-img-top border-dark"
width = "100%"
/>
<div class="card-body justify-content-center p-4">
<h4 class="card-title">
Session on 'Ethical Hacking, Bug Hunting, and more...'
</h4>
<br />
<p class="card-text">
<!-- <p class="card-text" style="max-height: 15rem;"> -->
A discussion on career opportunities in the fields of Cyber Security, Ethical Hacking, and Bug Hunting
<br /><br />
<strong>Date</strong>: 17th March, 2022 <br />
<strong>Time</strong> : 9 PM <br />
<!-- <strong>This event has been ended.</strong> <br/> -->
<a href="https://www.instagram.com/p/CbKml-Sqklu/"
><strong>View More</strong></a
>
<br />
</p>
</div>
</div>
</div>
<!-- end of event1 -->
<!-- event 1 -->
<div id="event1" class="col-lg-4">
<div class="card text-center event-card my-3">
<img
src="./img/home_page_cards/ifest21.jpg"
class="card-img-top border-dark"
width = "100%"
/>
<p class="card-text">
<!-- <p class="card-text" style="max-height: 15rem;"> -->
<h4 class="card-title">
i.Fest '21
</h4>
<p class="card-text" style="max-height: 25rem;">
Gujarat’s Largest Technical Fest, which encompasses over 15 technical and cultural events.
<br /><br />
<strong>Date</strong>: 26 November to 28 November, 2021 <br />
<strong>Time</strong> : 9 PM <br />
<!-- <strong>This event has been ended.</strong> <br/> -->
<a href="./viewmore_ifest21.html"
><strong>View More</strong></a
><br />
</p>
</div>
</div>
</div>
<!-- end of event1 -->
<!-- event 1 -->
<!-- <div id="event1" class="col-lg-4">
<div class="card text-center event-card my-3">
<img
src="./img/PosterFinalHiteshHOST.jpg"
class="card-img-top border-dark"
width="5rem"
/>
<div class="card-body justify-content-center p-4">
<h4 class="card-title">
Insta Live with <strong>Hitesh Choudhary</strong>
</h4>
<p class="card-text" style="max-height: 15rem;">
Hosted by <strong>Akshay Miterani</strong><br />
Session on
<i>HOW TO IMPROVE YOUR TECHNICAL SKILLS</i> during this
Lockdown <br />
<strong>Date</strong>: Sunday, 31 May 2020 <br />
<strong>Time</strong> : 9 PM <br /><strong>This event has been ended.</strong> <br/>
<a href="https://www.instagram.com/p/CAsUpAsFw3T/?utm_medium=copy_link"
><strong>View More</strong></a
>
</p>
</div>
</div>
</div> -->
<!-- end of event1 -->
</div>
</center>
</section>
<!-- ======= Join IEEE Section ======= -->
<section id="joinieee" class="joinieee container wow fadeIn">
<div class="row">
<div class="col whyjoin">
<div class="row">
<div class="col">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="row">
<div class="col-lg-6">
<img
src="./img/about_img-700kb.jpg"
class="img-fluid"
alt=""
/>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>
Welcome to IEEE Student Branch,DAIICT
</h3>
<p class="font-italic">
DAIICT is an academic institution promoted by the
Dhirubhai Ambani Foundation and the Reliance Group,
primarily aimed to impart Information and Communication
Technology (ICT) education of international standards.
<!-- Established amidst the lush green corridor of
Gandhinagar, Gujarat, DAIICT lives for the furtherance
of education, research, and training in ICT. DAIICT
commenced activities from August 2001. DAIICT is a
research-led institute which houses world-class
facilities such as well-equipped labs with the latest
equipment and software, modern lecture theatres, a
multi-cuisine canteen and on-campus residence. -->
</p>
</div>
</div>
<div class="row">
<div class="col-lg-6 pt-4 pt-lg-0 content">
<p class="font-italic">
The
<strong
>Institute of Electrical and Electronic Engineers
Student Branch</strong
>
at DAIICT endeavours to promote student awareness among
students on the opportunities that exist in the field of
electronics and electrical engineering. Our objective is
to bridge the gap between industry and students studying
in technology-related fields while promoting and
providing an intellectually stimulating university
environment for the student body.
<!-- IEEE Student Branch,
DAIICT aims to provide an interactive platform for
students to develop professional and technical
abilities. Since the inception, it is successful in
organizing various events with well-defined objectives. -->
</p>
</div>
<div class="col-lg-6">
<img
src="./img/about_2-500kb.jpg"
class="img-fluid"
alt=""
/>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<h2>Why join IEEE?</h2>
<p>
IEEE had appeared from the union of two engineering societies in
the early sixties, the IRE (Institute of Radio Engineers) and
the AIEE (American Institute of Electrical Engineers). The IEEE
is essentially a society for Electrical and Computer Engineers,
but it also welcomes Computer Scientists and Physicists. IEEE is
what is known as a technical professional society. Every
engineering branch has a technical professional society, Civil
Engineering has ASCE (American Society of Civil Engineers),
Mechanical Engineering has ASME (American Society of Mechanical
Engineers).
</p>
<p>
What distinguishes IEEE from these other societies is the fact
that IEEE is international. There are IEEE chapters in every
continent, and in almost every country, and in those countries
where IEEE is not established it has links with the local
engineering societies, such as the case with IKE (Institution of
Electrical Engineers) in the United Kingdom of Great Britain and
Northern Ireland. This makes IEEE the largest engineering
society in the world.
</p>
</div>
</div>
<div class="row">
<div class="col" id="otherbenefits">
<h2>Other Benefits</h2>
<p>
1. Spectrum, a monthly magazine of IEEE (single copy costs $ 4,
It is FREE with Member Subscription).
</p>
<p>
2. All Technical papers are freely accessible to IEEE members.
</p>
<p>
3. It gives you International Recognition as a member of the
most active technical organisation(IEEE).
</p>
<p>
4. Helps you do research, get recognition & publish your work to
the whole world.
</p>
<p>
5. You can have a personal email alias email
id(ur_name@ieee.org). Furthermore, it adds value to your resume.
</p>
<p>
6. Entry in various international events like IEEE Xtreme, etc.
</p>
<p>
7. You can be a part of groups of IEEE SB DAIICT which are the
SIG-embedded Programming, SIG-Mobile Application etc.
</p>
<p>
8. It gives you access to Digital library of IEEE, Job site of
IEEE and IEEE TV on the internet.
</p>
<p>
9. Provides an opportunity to Represent college in Quarterly
Meets, other meetings, etc.
</p>
<p>
10. Join IEEE & get a life of an innovator -
<a href="https://www.ieee.org">www.ieee.org/join</a>.
</p>
</div>
</div>
</div>
<!-- <div class="col-md-3 right-achievements">
<p>Best IEEE branch 2019 award won by IEEE SB DAIICT</p>
<hr />
<p>
The most happening chapter award won by IAS, IEEE SB DA-ICT
</p>
<hr />
<p>
Project proposal submitted by Rahil Patel, Harsh Patel and Smit Shah
won the 3rd prize.
</p>
<hr />
<p>
First Prize won by Aagam Mehta, Kunjal Rupala, Prahar Modi in Smart
City Domain at Ingenious Hackathon at Ahmedabad University on 3-4
March
</p>
<hr />
<p>
Second Prize won by Maitreya Patel, Raksha Rank, Anery Patel,
Dhruval Suthar in Machine Learning Domain at Ingenious Hackathon at
Ahmedabad University on 3-4 March
</p>
<hr />
<p>
Second Prize won by Abhi Ratnman, Siddharth pogul, Rutvik Shah in
the Internet of Things Domain at Ingenious Hackathon at Ahmedabad
University on 3-4 March
</p>
<hr />
<p>
2017 IAS Web Contest 3rd prize to IEEE IAS Student Branch of DAIICT
</p>
<hr />
<p>
First Prize and Travel Grant of $1600 won by Harsh Thakkar, Jay Shah
and Devam Shah in International Competition ‘CMD Students Robotics
Demonstration Contest 2017’
</p>
<hr />
<p>
"Outstanding Student Branch Chapter Chair" Award to Abhishek Parikh,
Chairpeson, IEEE IAS SB Chapter DAIICT 2017
</p>
<hr />
<p>
Outstanding Large Chapter Award 2015 to IEEE IAS SB Chapter DAIICT
</p>
<hr />
<p>Best Student Branch 2015, Gujarat Section</p>
<hr />
<p>
Divyakumar Solanki received a grant for attending AISYWC at VVIET,
Mysore
</p>
<hr />
<p>
Rahil Patel, Harsh Patel and Smit Shah submitted a proposal for
their project to the Humanitarian Projects Contest organized by IEEE
Industry Applications Society CMD Committee and Humanitarian
Programs Subcommittee and won the 3rd prize.
</p>
</div> -->
</div>
</section>
<!-- Summer school section -->
<!-- <section id="summerschool" class="wow fadeIn">
<div class="text-center" id="home">
<canvas id="c"></canvas>
<p class="home_title">Summer School '21</p>
<h1>
Data Science
<div class="small_span">and</div>
Machine Learning
</h1>
<br />
<h3>4<sup>th</sup> - 6<sup>th</sup> & 12<sup>th</sup> - 13<sup>th</sup> June, 2021</h3>
<div class="small_span">(5 days workshop)</div>
<br><h4 style="margin-bottom: 40px;">This event has been ended.</h4>
<a href="https://ieee-sb-daiict.github.io/summer-school-21/" id="registerbtn" target="_blank">View More</a>
<br>
</section> -->
<!-- End of Summer School -->
<!-- ======= Achievements Section ======= -->
<section id="achievements" class="achievements wow fadeIn">
<div class="container">
<div class="section-title" data-aos="fade-in" data-aos-delay="100">
<h2>Achievements</h2>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="200">
<p class="description">
Best IEEE Student Branch 2022 awarded by IEEE Gujarat Section
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up">
<p class="description">
Best IEEE branch 2019 award won by IEEE SB DAIICT
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<p class="description">
The most happening chapter award won by IAS, IEEE SB DA-ICT
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="200">
<p class="description">
Project proposal submitted by Rahil Patel, Harsh Patel and Smit
Shah won the 3rd prize.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="300">
<p class="description">
First Prize won by Aagam Mehta, Kunjal Rupala, Prahar Modi in
Smart City Domain at Ingenious Hackathon at Ahmedabad University
on 3-4 March
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up">
<p class="description">
Second Prize won by Maitreya Patel, Raksha Rank, Anery Patel,
Dhruval Suthar in Machine Learning Domain at Ingenious Hackathon
at Ahmedabad University on 3-4 March
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<p class="description">
Second Prize won by Abhi Ratnman, Siddharth pogul, Rutvik Shah
in the Internet of Things Domain at Ingenious Hackathon at
Ahmedabad University on 3-4 March
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="200">
<p class="description">
Rahil Patel, Harsh Patel and Smit Shah submitted a proposal for
their project to the Humanitarian Projects Contest organized by
IEEE Industry Applications Society CMD Committee and
Humanitarian Programs Subcommittee and won the 3rd prize.
</p>
</div>
</div>
</div>
<div class="row">
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="300">
<p class="description">
First Prize and Travel Grant of $1600 won by Harsh Thakkar, Jay
Shah and Devam Shah in International Competition ‘CMD Students
Robotics Demonstration Contest 2017
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up">
<p class="description">
"Outstanding Student Branch Chapter Chair" Award to Abhishek
Parikh, Chairpeson, IEEE IAS SB Chapter DAIICT 2017
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<p class="description">
Outstanding Large Chapter Award 2015 to IEEE IAS SB Chapter
DAIICT
</p>
</div>
</div>
<div
class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0"
>
<div class="icon-box" data-aos="fade-up" data-aos-delay="300">
<p class="description">
2017 IAS Web Contest 3rd prize to IEEE IAS Student Branch of
DAIICT
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End achievements Section -->
<!-- Footer -->
<div class="footer wow fadeIn" id="sitemap">
<div class="container row justify-content-center text-center">
<div class="col-md-4 footer-left">
<h4 class="text-center">Site Map</h4>
<div class="mid-btm">
<p>
<a href="https://www.daiict.ac.in" target="_blank"
>About DAIICT</a
>
<br /><a href="https://www.ieee.org" target="_blank"
>About IEEE</a
>
<!-- <br />
<a href="#popup3">Region 10</a> -->
<br /><a href="index.html" target="_blank">IEEE SB DAIICT</a>
<br />
<a href="https://ieeegujaratsection.org" target="_blank"
>IEEE Gujarat Section</a
>
<br /><a href="team.html" target="_blank">Branch Execomm</a>
<!-- <br /><a href="#popup7">Bylaws</a> -->
</p>
</div>
</div>
<div class="col-md-4 footer-left" style="margin-bottom: 35px;">
<h4>DAIICT</h4>
<p></p>
<a href="http://www.daiict.ac.in" target="_blank">
<img
src="./img/dalogo.png"
class="img-responsive1"
width="162px"
height="156px"
/></a>
</div>
<div class="col-md-4 footer-right">
<h4>Other Links</h4>
<p>
<a href="http://ieee.daiict.ac.in/ss22/" target="_blank">Summer School 2022</a>
<br /><a href="http://ifest.daiict.ac.in/" target="_blank"
>i.Fest 2021</a
>
<br /><a href="http://ias.daiict.ac.in/" target="_blank">IAS</a>
<br /><a href="https://wie.ieee.org" target="_blank">WIE</a>
<br /><a href="https://www.mtt.org/" target="_blank">MTT-S</a>
<br /><a href="chapters.html" target="_blank">SIG Embedded</a>
<br /><a href="chapters.html" target="_blank">SIG Mobile Apps</a>
<br /><a href="chapters.html" target="_blank"
>SIG Machine Intelligence</a
>
<br />
<a href="https://youtube.com/user/ieeesbdaiict" target="_blank"><i class="fa fa-youtube square fa-lg"></i></a>    
<!-- <a href="https://www.facebook.com/ieeesbdaiict/" target="_blank"><i class="fa fa-facebook-square fa-lg"></i></a>     -->
<a href="mailto:ieee@daiict.ac.in"><i class="fa fa-envelope-o fa-lg"></i></a>    
<a href="https://www.linkedin.com/company/ieee-student-branch-daiict/" target="_blank"><i class="fa fa-linkedin square fa-lg"></i></a>    
<a href="https://instagram.com/i.fest?utm_medium=copy_link" target="_blank"><i class="fa fa-instagram square fa-lg"></i></a>
</p>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div
class="copyright wow fadeIn"
data-wow-duration=".8s"
data-wow-delay=".2s"
>
<div class="container">
<p>
© 2021 IEEE SB DAIICT. All rights reserved | Designed by
<a style="color: white;" href="https://github.com/AjaysinhRajput2802" target="_blank">Ajaysinh Rajput</a> , <a style="color: white;" href="https://github.com/201901407" target="_blank">Darshil Parekh</a> and <a style="color: white;" href="https://github.com/akshitajindal" target="_blank">Akshita Jindal</a> , IEEE SB, DA-IICT
</p>
</div>
</div>
<!-- <script
src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"
></script> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> -->
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"
></script>
<script src="./js/copy.js"></script>
<script src="./js/summer.js"></script>
<script src="./js/easing.js"></script>
<script src="./js/script.js"></script>
<script src="./js/wow.js"></script>
<script>
new WOW().init();
</script>
</body>
<script>
//Array of images which you want to show: Use path you want.
var images=["img/Gallery/DSC_0610-200kb.jpg","img/Gallery/18-min.JPG","img/Gallery/14-min.jpg","img/Gallery/7-min.jpg","img/Gallery/5-min.jpg"];
var nextimage=0;
doSlideshow();
function doSlideshow(){
if(nextimage>=images.length){nextimage=0;}
$('.hero').css('background-image','url('+images[nextimage++]+')');
//$('.hero').fadeIn(2000,function(){
//setTimeout(doSlideshow,5000);
//});
setTimeout(doSlideshow,7000);
}
</script>
</html>