-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
838 lines (797 loc) · 33.4 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
<!DOCTYPE html>
<!-- Website developed by Jayesh Bhade and Harsh Agrawal -->
<!-- Check console for more info -->
<html class=""><!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="" />
<meta
name="description"
content="Atal Centre for Innovation, Incubation and Entrepreneurship is an organization aimed to foster, promote and support entrepreneurial spirit among the students."
/>
<title>ACIIE</title>
<!-- Standard Favicon -->
<link rel="icon" type="image/x-icon" href="images//favicon.ico" />
<!-- For iPhone 4 Retina display: -->
<link
rel="apple-touch-icon-precomposed"
sizes="114x114"
href="images//apple-touch-icon-114x114-precomposed.png"
/>
<!-- For iPad: -->
<link
rel="apple-touch-icon-precomposed"
sizes="72x72"
href="images//apple-touch-icon-72x72-precomposed.png"
/>
<!-- For iPhone: -->
<link
rel="apple-touch-icon-precomposed"
href="images//apple-touch-icon-57x57-precomposed.png"
/>
<!-- Library - Bootstrap v3.3.5 -->
<link rel="stylesheet" type="text/css" href="libraries/lib.css" />
<link
rel="stylesheet"
type="text/css"
href="libraries/Stroke-Gap-Icon/stroke-gap-icon.css"
/>
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,900,300,300italic,500,700"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,700"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Niconne"
rel="stylesheet"
type="text/css"
/>
<!-- Custom - Common CSS -->
<link rel="stylesheet" type="text/css" href="css/plugins.css" />
<link rel="stylesheet" type="text/css" href="css/navigation-menu.css" />
<!-- Custom - Theme CSS -->
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="css/shortcode.css" />
<!--[if lt IE 9]>
<script src="js/html5/respond.min.js"></script>
<![endif]-->
</head>
<body data-offset="200" data-spy="scroll" data-target=".ow-navigation">
<!-- LOADER -->
<div id="site-loader" class="load-complete">
<div class="loader">
<div class="loader-inner ball-clip-rotate">
<div></div>
</div>
</div>
</div>
<!-- Loader /- -->
<!-- Header -->
<header class="header-main container-fluid no-padding">
<!-- Menu Block -->
<div class="menu-block container-fluid no-padding">
<!-- Container -->
<div class="container">
<div class="row">
<!-- Navigation -->
<nav class="navbar ow-navigation">
<div class="col-md-3">
<div class="navbar-header">
<button
aria-controls="navbar"
aria-expanded="false"
data-target="#navbar"
data-toggle="collapse"
class="navbar-toggle collapsed"
type="button"
>
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a title="Logo" href="" class="navbar-brand"
><img class="ss-img" src="images/atalcentrelogo(1).png" alt="logo"/></a>
<a href="" class="mobile-logo" title="Logo"
><img class="ss-logo" src="images/atalcentrelogo(1).png" alt="logo" style="height: 6vh;"/></a
>
</div>
</div>
<div class="col-md-9">
<div class="navbar-collapse collapse" id="navbar">
<ul class="nav navbar-nav menubar">
<li class="dropdown active">
<a
aria-expanded="false"
aria-haspopup="true"
href="#main-Photo"
role="button"
class="dropdown-toggle"
title="Home"
>Home</a
>
</li>
<li class="dropdown">
<a
aria-expanded="false"
aria-haspopup="true"
role="button"
class="dropdown-toggle"
title="Courses"
href="#about"
>About us</a
>
</li>
<li>
<a title="aciie-supports" href="#aciie-supports"
>Aciie Supports</a
>
</li>
<li>
<a title="events" href="#event-block">Events</a>
</li>
<li ><a title="Incubation Centre" href="Incubation-centre.html">Incubation Centre</a></li>
<li>
<a title="Institute's Innovation Council" href="iic.html"
>IIC</a
>
</li>
<li><a title="E-CELL" href="https://ecell-ietdavv-2b365.web.app/">E-CELL</a></li>
<li>
<a title="Contact" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navigation /- -->
</div>
</div>
<!-- Container /- -->
</div>
<!-- Menu Block /- -->
</header>
<div id="main-Photo" style="display: flex; flex-direction: column; padding: 30px">
<h2 style="margin-top: 60px;"><b>Welcome to ACIIE</b></h2>
<p>Promoting the spirit of entrepreneurship through Innovation, Incubation and Inspiring Events.</p>
</div>
<!-- PhotoSlider Section /- -->
<div
id="about"
class="container welcome-section"
style="margin-top: 80px; padding-left: 0"
>
<div class="section-header">
<h3>About <span style="color: gold">Us</span></h3>
<div id="about-section">
<div id="about-section-image" style="justify-content: center;align-items:center;">
<img src="images/ecell 4-01.png" style="width: 80%" />
</div>
<div
class="about-us-section"
style="
text-align: center;
align-items: center;
justify-content: center;
padding-left:45px;
padding-right:30px;
"
>
<p style="line-height: 7.75mm; text-align: justify;"> It is often said that "science of today is technology of tomorrow". And we, ACIIE, DAVV are
determined to achieve this very goal. Entrepreneurs with a technical background like our
students have an amazing capability to innovate both on the technical and business fronts.
ACIIE, DAVV aims at fostering such capability and provides all possible support to convert their
dreams and aspirations into reality. We are here to support the aspiring entrepreneurs of the
future and also to drive-in the real sense of ‘entrepreneurship’ in those, who are new to this
entrancing word.
</p>
</div>
</div>
</div>
</div>
<!-- Welcome Section /- -->
<div id="moto" class="container-fluid no-padding searchcourses">
<div class="container">
<div class="search-content">
<div class="searchcourses-block" style="margin-top: -60px">
<h2 id="heading-motto" style="color: white">Vision</h2>
</div>
<div
class="search-categories"
style="
margin-top: 0px;
margin-bottom: -80px;
text-align:justify;
padding:30px;
"
>
<p style="line-height: 5.5mm;">
To be a front runner in knowledge based, innovation driven technology development, prototyping and entrepreneurship encompassing interdisciplinary approaches.
</p>
</div>
</div>
</div>
</div>
<!-- Parallax Section -->
<div
id="mission-vision"
class="container-fluid no-padding parallax-section"
>
<div class="parallax-carousel">
<div class="parallax-block">
<div class="parallax-box">
<img
src="images/mv2.jpg"
alt="parallax"
width="1920"
height="600"
/>
</div>
<div
class="parallax-content"
style="padding: 22px 10% 22px 10%;"
>
<h2 id="heading" style="color: white; margin-top: 40px;">Mission</h2>
<ul style="margin-top: 30px; text-align: left; list-style: circle; color: white;line-height:5.80mm">
<li>• To strengthen the practical, problem solving capabilities in the society.</li>
<li>• To inculcate values, principles and self-belief in students for converting put ideas into products.</li>
<li>• To develop an ecosystem that encourages setting up of start-ups and innovation driven entrepreneurship.</li>
<li>• To provide support to the budding entrepreneurs through facilities like physical space, infrastructure, funding network, mentoring/training and other facilities.</li>
<li>• To establish a network of experts drawn from academic, financial, industrial, and other institution for furthering the entrepreneurial cause.</li>
<li>• To assist in protection of intellectual property, and speedy commercialization of innovative ideas from students.</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Parallax Section /- -->
<!-- Welcome Section -->
<div id="aciie-supports" class="container welcome-section">
<div class="section-padding"></div>
<div class="section-header">
<h3><span style="color: gold">ACIIE </span>Supports</h3>
<p>The three main pillars of ACIIE are as follows:</p>
</div>
<div id="aciie-supports-columns">
<div class="col-md-4 col-sm-6 col-xs-6" style="margin-bottom: 20px">
<div id="article-incubation-cell" class="article" style="padding: 25px;">
<div>
<h3 style="font-size: 26px;">Incubation Centre</h3>
</div>
<div >
<p style="line-height: 7mm;margin-top:10%;text-align:justify;">
The incubation centre is the umbrella under which the faculty and the students work together
adeptly to proliferate ACIIE’s mission in our institutes. It
administers all the events that are organized under ACIIE and provide hands-on-experience in innovation and entrepreneurship by mentoring and nurturing startups to grow in their early stages.
</p>
<a href="Incubation-centre.html" title="View More" id="event-view-button">Know more</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-6" style="margin-bottom: 20px">
<div id="article-incubation-cell" class="article" style="padding: 25px;">
<div>
<h3 style="font-size: 22px;">Institute's Innovation Council</h3>
</div>
<div >
<p style="line-height: 7mm;margin-top:10%;text-align:justify;">
IIC is an initiative of MoE's Innovation Cell (MIC) in a joint effort with AICTE for Higher Educational Institutions (HEIs) to deliberately encourage the development and start-up environment in training establishments.
It has emerged as a very sustainable and scalable model for promoting innovation within HEIs and is having impactful contribution towards India's Innovation and Start-Ups.
</p>
<a href="iic.html" title="View More" id="event-view-button" >Know more</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-6" style="margin-bottom: 20px;">
<div id="article-ecell" class="article" style="padding: 25px;">
<div>
<h3 style="font-size: 26px;">Student Club: E-Cell</h3>
</div>
<div >
<p style="line-height: 7mm;margin-top:10%;text-align:justify;">
Entrepreneurship cell is the student body of ACIIE that works hand in hand with the Incubation Centre and Institute's Inovation Council. Every year some talented and great minds of IET-DAVV
are recruited even from the obscurest corner with the mindset and belief to strengthen and
boost the E-Cell team's performance.
</p>
<a href="https://ecell-ietdavv-2b365.web.app/" title="View More" id="event-view-button">Know more</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Welcome Section /- -->
<!-- Event Section -->
<div
class="container event-section"
style="
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top:40px;
"
>
<div class="section-header-block">
<div class="section-header" id="event-block">
<h2 style="text-align: center; font-size: 40px; font-weight: 700">
Our <span style="color: gold">Recent Activities</span>
</h2>
</div>
</div>
<div class="event-block" style="display: flex">
<div
class="event-box"
style="
display: flex;
justify-content: center;
align-items: center;
text-align: center;
"
>
<div class="">
<div>
<img src="images/Prerna Start-up Conclave'21.png" alt="event1" />
</div>
<div class="" style="padding-left: 30px; padding-right: 30px">
<h3>
<a href="#" title="Prerna Start-up Conclave'21"
>Prerna Start-up Conclave<br/>2021</a
>
</h3>
<div class="event-meta">
<span
><i aria-hidden="true" class="fa fa-clock-o"> MAY 2021</i></span
>
</div>
<p style="text-align: justify;">
Start-ups which originated from DAVV, were invited at Prerna'21 to share their startup journey and
ignite and motivate the future entrepreneurs to pursue their dreams from college life itself.
It was a huge success with over 450 online attendees.
</p>
</div>
</div>
</div>
<div
class="event-box"
style="
display: flex;
justify-content: center;
align-items: center;
text-align: center;
"
>
<div class="">
<div>
<img src="images/Freshman Orientation 2020.png" alt="event1" />
</div>
<div class="" style="padding-left: 30px; padding-right: 30px">
<h3>
<a href="#" title="Freshman Orientation 2020 "
>Freshman Orientation 2020 <br/>(by Mr. Umesh Rathod)</a
>
</h3>
<div class="event-meta">
<span
><i aria-hidden="true" class="fa fa-clock-o"></i> 2020</span
>
</div>
<p style="text-align: justify;">
Mr. Umesh Rathod, an Entrepreneur with more than 10 years of experience in the field, guided the students on the topic "The joy of problem solving". The event ignited, inspired and motivated students to pursue entrepreneurship and develop key life skills. </p>
</div>
</div>
</div>
<div
class="event-box"
style="display: flex; justify-content: center; text-align: center"
>
<div class="">
<div>
<img src="images/E-Summit 2020.png" alt="event1" />
</div>
<div class="" style="padding-left: 30px; padding-right: 30px">
<h3>
<a href="#" title="E-Summit 2020"
>E-Summit <br/>2020</a
>
</h3>
<div class="event-meta">
<span
><i aria-hidden="true" class="fa fa-clock-o"></i>FEB 2020</span
>
</div>
<p style="text-align: justify;">
E-Cell Team of IET-DAVV secured Top-5 finish in NEC hosted by IIT Bombay annually, to secure a place at E-Summit IIT Bombay for the second consecutive year. This proved to be a huge learning experience for all the budding entrepreneurs. </p>
</div>
</div>
</div>
</div>
<div class="event-block" style="display: flex">
<div
class="event-box"
style="
display: flex;
justify-content: center;
align-items: center;
text-align: center;
"
>
<div class="">
<div>
<img src="images/Startup Pitching 2019 (2).png" alt="event1" />
</div>
<div class="" style="padding-left: 30px; padding-right: 30px">
<h3>
<a href="#" title="Startup Pitching 2019 (2)"
>Start-up Pitching Competition 2019 </a
>
</h3>
<div class="event-meta">
<span
><i aria-hidden="true" class="fa fa-clock-o"> 2019</i></span
>
</div>
<p style="text-align: justify;">
To provide a platform for the young minds to convert their idea into reality a Start-up Pitching
Completion was held where more than 10 start-ups participated and 2 of them were approved and incubated.
</p>
</div>
</div>
</div>
<div
class="event-box"
style="
display: flex;
justify-content: center;
align-items: center;
text-align: center;
"
>
<div class="">
<div>
<img src="images/Business Model Workshop.png" alt="event1" />
</div>
<div class="" style="padding-left: 30px; padding-right: 30px">
<h3>
<a href="#" title="Business Model Workshop"
>Business Model Workshop <br/> 2019 </a
>
</h3>
<div class="event-meta">
<span
><i aria-hidden="true" class="fa fa-clock-o"> DEC 2019</i></span
>
</div>
<p style="text-align: justify;">
A session where the minute details of building a business model was conducted with hands-on training and experience, by E-Cell President Sourabh Yadav. This workshop proved really beneficial for all the E-Cell members. </p>
</div>
</div>
</div>
<div
class="event-box"
style="display: flex; justify-content: center; text-align: center"
>
<div class="">
<div>
<img src="images/DSC20.png" alt="event1" />
</div>
<div class="" style="padding-left: 30px; padding-right: 30px">
<h3>
<a href="#" title="Science In The New Era"
>Freshman Orientation 2019 <br/>(by Mr. Raj Shamani)</a
>
</h3>
<div class="event-meta">
<span
><i aria-hidden="true" class="fa fa-clock-o"></i>SEPT 2019</span
>
</div>
<p style="text-align: justify;">
Mr. Raj Shamani, one of the best Influencers, Keynote Speaker and Entrepreneur,
shared his journey and experience with the freshers of IET-DAVV. An event which is still afresh in minds of young enterpreneurs.
</p>
</div>
</div>
</div>
</div>
<a href="https://ecell-ietdavv-2b365.web.app/discover" title="View All" id="event-view-button">View All</a>
</div>
<!--/main content wrapper -->
<!-- LatestBlog Section -->
<div class="container-fulid no-padding latestblog-section">
<div class="section-padding"></div>
<div class="container">
<div class="section-header">
<h2 style="text-align: center; font-size: 40px; font-weight: 700">
<span style="color: gold">ACIIE </span>Working Committee
</h2>
<p style="margin-top: 20px;">
Our dedicated and experienced team of ACIIE committee members. </p>
</div>
<div class="row" style="margin-top: -20px;">
<div class="col-md-4 col-sm-6 col-xs-6" >
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock" >
<div>
<img src="images/Dr.PratibhaSharma.jpg" style="border-radius: 50%;width:200px;height:185px;"/>
<div>
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Pratibha Sharma</h4>
<p>Dean, Professor <br/>
School of Chemical Science, DAVV, Indore</p>
</span>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div>
<img src="images/Dr-Sanjiv-Tokekar.jpg" style="border-radius: 50%;width:200px;height:185px;"/>
<div>
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Sanjiv Tokekar</h4>
<p>Director <br/> Institute of Engineering and Technology, DAVV, Indore</p>
</div>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div>
<img src="images/IMG-20210810-WA0026_3.jpg" style="border-radius: 50%;width:200px;height:185px;"/>
<div>
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Shashi Prakash</h4>
<p>Nodal officer And Secretary <br/> Institute of Engineering and Technology, DAVV, Indore</p>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Rajesh Sharma</h4>
<p>Dean, Professor <br/>
School of Pharmacy, DAVV, Indore</p>
</span>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Anjana Jajoo</h4>
<p>Dean, Professor <br/> School of Life Sciences, DAVV, Indore</p>
</div>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Gyanprakash</h4>
<p>Dean, Professor<br/> School of Economics, DAVV, Indore</p>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Deepak Mehta</h4>
<p>Dean, Professor <br/>
School of Physical Education, DAVV, Indore</p>
</span>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Meena Sharma</h4>
<p>Dean, Professor <br/> Institute of Engineering and Technology, DAVV, Indore</p>
</div>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Nandini Sarvate</h4>
<p>Dean, Professor <br/>Mata Jiha Bai Government Girls PG college Indore</p>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Kamakshi Agnihotri</h4>
<p>Dean, Professor <br/>
School of Education, DAVV, Indore</p>
</span>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Dr. Vandana Agnihotri</h4>
<p>Dean, Professor <br/> Mata Jiha Bai Government Girls PG College, Indore</p>
</div>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Shri Ambrish Kale</h4>
<p>MO and CIO <br/>Science and Techno</p>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
<div class="postby">
<h4 style="font-weight:bold;">Shri Ankit Ranka</h4>
<p>Director <br/>GoPaani (Boond Tech Pvt. Ltd.)</p>
</div>
</div>
</div>
</div>
</article>
</div>
<div class="col-md-4 col-sm-6 col-xs-6">
<article class="type-post">
<div class="entry-block">
<div class="entry-contentblock">
<div class="entry-meta">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
<!-- LatestBlog Section -->
<!-- Footer Main -->
<footer id="contact" class="footer-main footer2 container-fluid no-padding" >
<!-- Container -->
<div class="container">
<div
class="row"
style="display: flex; justify-content: center; align-items: center"
>
<div class="col-md-6 col-sm-6">
<aside class="ftr-widget about_widget">
<a class="footer-logo" href="#main-Photo" title="Logo"
><img alt="logo" src="images/atalcentrelogo(1).png" style="height: 6vh;background-color: white; border-radius:6vh"/>ACIIE</a
>
<span>
Feel free to contact us in case of any queries</span
>
<p>
<span class="icon icon-Plaine"></span><a href="https://goo.gl/maps/TE8BzuAN5RBZpStq9" target="_blank">Address : ACIIE, E-104, E-block, IET-DAVV, Indore (M.P.)</a>
</p>
<p>
<span class="icon icon-Phone2"></span>Phone :
Dr. Shashi Prakash, <a title="+91 99771 86156" href="tel:+91 99771 86156"
>+91 99771 86156</a
>
</p>
<p>
<span class="icon icon-Mail"></span>Email :
<a title="ecell@ietdavv.edu.in" href="mailto:ecell@ietdavv.edu.in"
>ecell@ietdavv.edu.in</a
>
</p>
</aside>
</div>
</div>
<!-- Footer Bottom -->
<div
class="footer-bottom col-md-12 col-sm-12 no-padding"
style="display: flex; justify-content: center; align-items: center"
>
<div class="copyright no-padding">
<span> © 2021 IET DAVV. All Rights Reserved. </span>
<div style="color: #242424">Web Developers : <a style="color: #242424" href="https://www.linkedin.com/in/jayeshbhade">Jayesh Bhade</a> & <a style="color: #242424" href="https://www.linkedin.com/in/harsh-agrawal-3229501aa">Harsh Agrawal</a></div>
</div>
</div>
<!-- Footer Bottom /- -->
</div>
<!-- Container /- -->
</footer>
<!-- Footer /- -->
<!-- JQuery v1.11.3 -->
<script src="js/jquery.min.js"></script>
<!--script src="js/jquery.knob.js"></script-->
<!-- Library - Js -->
<script src="libraries/lib.js"></script>
<!-- Bootstrap JS File v3.3.5 -->
<!-- Library - Google Map API -->
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<!-- Library - Theme JS -->
<script src="js/functions.js"></script>
<script>
console.log("This website is developed by :")
console.log('%c Jayesh Bhade', 'font-weight: bold; font-size: 50px; text-shadow: 3px 3px 0 rgb(217,31,38) , 6px 6px 0 rgb(226,91,14) , 9px 9px 0 rgb(245,221,8) , 12px 12px 0 rgb(5,148,68) , 15px 15px 0 rgb(2,135,206) , 18px 18px 0 rgb(4,77,145) , 21px 21px 0 rgb(42,21,113)');
console.log('%c LinkedIn : https://www.linkedin.com/in/jayeshbhade', 'color: blue; background: yellow; font-size: 15px')
console.log('%c Github : https://github.com/Jaybhade', 'color: blue; background: yellow; font-size: 15px')
console.log('%c Mail : jayeshjibhade@gmail.com', 'color: blue; background: yellow; font-size: 15px')
console.log('%c Harsh Agrawal', 'font-weight: bold; font-size: 50px; text-shadow: 3px 3px 0 rgb(217,31,38) , 6px 6px 0 rgb(226,91,14) , 9px 9px 0 rgb(245,221,8) , 12px 12px 0 rgb(5,148,68) , 15px 15px 0 rgb(2,135,206) , 18px 18px 0 rgb(4,77,145) , 21px 21px 0 rgb(42,21,113)');
console.log('%c LinkedIn : https://www.linkedin.com/in/harsh-agrawal-3229501aa', 'color: blue; background: yellow; font-size: 15px')
console.log('%c Github : https://github.com/harshagrawal30', 'color: blue; background: yellow; font-size: 15px')
//console.log('%c Mail : 9584292259.harsh@gmail.com', 'color: blue; background: yellow; font-size: 15px')
console.log('\n \n \n');
console.log("%c Found something unusual? Contact me or Raise an issue here - https://github.com/Jaybhade/aciie-web/", 'font-size: 15px;')
</script>
</body>
</html>