-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
970 lines (911 loc) · 35.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-162398295-4"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-162398295-4');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="keywords"
content="MindShout, IEEE Student Branch DAIICT, DAIICT, Hackathon"
/>
<meta name="title" content="MindShout" />
<meta name="description" content="MindShout, IEEE SB DAIICT" />
<meta name="author" href="" content="Meet Patel, Adit Shah" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://ieee.daiict.ac.in" />
<meta property="og:site_name" content="MindShout" />
<meta property="og:title" content="MindShout" />
<meta property="og:description" content="MindShout, IEEE SB DAIICT" />
<meta property="og:image" content="./img/MindShoutLogo.png" />
<link rel="shortcut icon" href="./img/MindShoutLogo.ico" />
<!-- Favicon -->
<link rel="icon" href="./img/mindshout/MindShoutLogo.ico" />
<!-- Core Stylesheet -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="./css/mobilestyles.css" />
<link rel="stylesheet" href="./css/custom-style.css" />
<title>MindShout</title>
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="wrapper">
<div class="cssload-loader"></div>
</div>
</div>
<!-- ***** Top Search Area Start ***** -->
<div class="top-search-area">
<!-- Search Modal -->
<div
class="modal fade"
id="searchModal"
tabindex="-1"
role="dialog"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<!-- Close Button -->
<button type="button" class="btn close-btn" data-dismiss="modal">
<i class="fa fa-times"></i>
</button>
<!-- Form -->
<form action="index.html" method="post">
<input
type="search"
name="top-search-bar"
class="form-control"
placeholder="Search and hit enter..."
/>
<button type="submit">Search</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- ***** Top Search Area End ***** -->
<!-- ***** Header Area Start ***** -->
<header class="header-area">
<!-- Main Header Start -->
<div class="main-header-area">
<div class="classy-nav-container breakpoint-off">
<!-- Classy Menu -->
<nav class="classy-navbar justify-content-between" id="uzaNav">
<!-- Logo -->
<a class="nav-brand" href="index.html"
><img src="./img/mindshout/MindShoutLogoFinal_BGLess.png" alt=""
/></a>
<!-- Navbar Toggler -->
<div class="classy-navbar-toggler">
<span class="navbarToggler"
><span></span><span></span><span></span
></span>
</div>
<!-- Menu -->
<div class="classy-menu">
<!-- Menu Close Button -->
<div class="classycloseIcon">
<div class="cross-wrap">
<span class="top"></span><span class="bottom"></span>
</div>
</div>
<!-- Nav Start -->
<div class="classynav">
<ul id="nav">
<li><a href="#hero-1">Home</a></li>
<li><a href="#about_section">About</a></li>
<li><a href="#why_mindshout">Why MindShout?</a></li>
<li><a href="#sponsors_section">Sponsors</a></li>
<li><a href="#exam_format">Exam Format</a></li>
<li><a href="#faqs">FAQs</a></li>
<li><a href="#contact_numbers">Contact</a></li>
</ul>
<!-- Get A Quote -->
<!--<div class="get-a-quote ml-4 mr-3">
<a href="./registration.html" class="btn uza-btn" style="text-transform:none;">Register Now for FREE !</a>
</div>-->
<!-- Login / Register -->
<!-- <div class="login-register-btn mx-3">
<a href="#">Login <span>/ Register</span></a>
</div> -->
<!-- Search Icon -->
<!-- <div
class="search-icon"
data-toggle="modal"
data-target="#searchModal"
>
<i class="icon_search"></i>
</div> -->
</div>
<!-- Nav End -->
</div>
</nav>
</div>
</div>
</header>
<!-- ***** Header Area End ***** -->
<!-- ***** Welcome Area Start ***** -->
<section class="welcome-area" id="hero-1">
<div class="welcome-slides owl-carousel">
<!-- Single Welcome Slide -->
<div class="single-welcome-slide">
<!-- Background Curve -->
<div class="background-curve">
<img src="./img/core-img/curve-1.png" alt="" />
</div>
<!-- Welcome Content -->
<div class="welcome-content h-100">
<div class="container h-100">
<div class="row h-100 align-items-center">
<!-- Welcome Text -->
<div class="col-12 col-md-6">
<div id="logodiv" style="float:left;display: inline;">
<img id="ifestlogo" src="img/mindshout/i.Fest_logo_new.png" />
</div>
<div id="voyagediv" style="float:left;display: inline;">
<img src="img/core-img/VirtualVoyage.png" />
</div>
<h5 style="text-align: center;">presents</h5>
<div class="welcome-text">
<!--<center><img src="img/mindshout/MindShoutLogoFinal_BGLess.png" /> </center>-->
<h2 style="text-align:left;" id="MainHeading">
MindShout 1.0
</h2>
<h3 data-animation="fadeInUp" data-delay="400ms">
A Shoutout to the
<span style="color: #1583e9">Brainiacs!</span>
</h3>
<h5 data-animation="fadeInUp" data-delay="400ms">
Organised by
<span style="color: slategray"
>i.Fest <br />
DAIICT, Gandhinagar</span
>
</h5>
<h5 data-animation="fadeInUp" data-delay="400ms">
Prelims on
<span style="color: #1583e9">27th December</span>
</h5>
<h3>( Registration for this event is now closed ) </h3>
</div>
</div>
<!-- Welcome Thumbnail -->
<div class="col-12 col-md-6">
<div class="welcome-thumbnail">
<img
src="./img/mindshout/MindShoutWebsite.png"
alt=""
data-animation="slideInRight"
data-delay="400ms"
id="side-image"
/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Welcome Area End ***** -->
<!-- ***** Cool Facts Area Start ***** -->
<div class="uza-cf-area">
<div class="container">
<!-- Section Heading -->
<div class="col-12">
<div class="section-heading text-center prizes-worth">
<h2>Prizes worth</h2>
<div class="single-cf-area mb-100">
<h2><span>1.5 Lakhs</span></h2>
</div>
</div>
</div>
</div>
</div>
<!-- ***** Cool Facts Area End ***** -->
<!-- ***** About Us Area Start ***** -->
<section class="uza-about-us-area" id="about_section">
<div class="container">
<div class="row align-items-center">
<!-- About Thumbnail -->
<div class="col-12 col-md-6">
<div class="about-us-thumbnail mb-80">
<img src="./img/mindshout/WebsiteMindShout.png" alt="" />
<!-- Video Area -->
<div class="uza-video-area hi-icon-effect-8">
<a
href="https://drive.google.com/file/d/1AyDz8wiQDKv97XCoX1KitheX7yt0sKhZ/preview"
class="hi-icon video-play-btn"
><i class="fa fa-play" aria-hidden="true"></i
></a>
</div>
</div>
</div>
<!-- About Us Content -->
<div class="col-12 col-md-6">
<div class="about-us-content mb-80">
<h2>About MindShout</h2>
<h5>
<strong>i.Fest</strong> is the largest technical fest of
Gujarat.
</h5>
<p>
Over 20 events are organised where established personalities are
invited from every industry to interact and provide endeavouring
insights to young minds for over a decade now.
</p>
<p>
With a vision of reaching out to school students and introducing
them to the latest applications of mathematics and science in
real life, i.Fest is proud to present MindShout 1.0 as the first
step in this direction.
</p>
<p>
MindShout 1.0 is an MCQ-based Aptitude Test for school students
<span style="font-size: larger"
><strong>aimed at students of Classes 8 to 12.</strong></span
>
</p>
<a href="#" class="btn uza-btn btn-2 mt-4">Why MindShout?</a>
</div>
</div>
</div>
</div>
<!-- About Background Pattern -->
<div class="about-bg-pattern">
<img src="./img/core-img/curve-2.png" alt="" />
</div>
</section>
<!-- ***** About Us Area End ***** -->
<!-- ***** Services Area Start ***** -->
<section class="uza-services-area section-padding-80-0" id="why_mindshout">
<div class="container">
<div class="row">
<!-- Section Heading -->
<div class="col-12">
<div class="section-heading text-center">
<h2>Why MindShout?</h2>
</div>
</div>
</div>
<div class="row">
<!-- Single Service Area -->
<div class="col-12 col-lg-4">
<div class="single-service-area mb-80">
<!-- Service Icon -->
<div class="service-icon">
<i class="icon_genius"></i>
</div>
<h5>Aptitude Testing</h5>
<p>
MindShout is an excellent opportunity for students to test
themselves in a competitive environment and get them prepared
for national competitive exams like JEE, NEET, CLAT etc.
</p>
</div>
</div>
<!-- Single Service Area -->
<div class="col-12 col-lg-4">
<div class="single-service-area mb-80">
<!-- Service Icon -->
<div class="service-icon">
<i class="icon_globe-2"></i>
</div>
<h5>National Level Test</h5>
<p>
We take this opportunity to reach out to students all across
India and allow them to test themselves at a national level and
get a nationwide ranking.
</p>
</div>
</div>
<!-- Single Service Area -->
<div class="col-12 col-lg-4">
<div class="single-service-area mb-80">
<!-- Service Icon -->
<div class="service-icon">
<i class="icon_document"></i>
</div>
<h5>Questions designed by Experts</h5>
<p>
With questions designed and curated by experts, this test aims
to challenge the thinking engines of students and provide
students with a platform to prove their mental powers.
</p>
</div>
</div>
</div>
<div class="row">
<!-- Single Service Area -->
<div class="col-12 col-lg-4">
<div class="single-service-area mb-80">
<!-- Service Icon -->
<div class="service-icon">
<i class="icon_piechart"></i>
</div>
<h5>Level-up your Skills</h5>
<p>
Our motive is to test the students’ conceptual understanding,
improve their problem-solving ability and challenge them to
think analytically.
</p>
</div>
</div>
<!-- Single Service Area -->
<div class="col-12 col-lg-4">
<div class="single-service-area mb-80">
<!-- Service Icon -->
<div class="service-icon">
<i class="icon_pencil"></i>
</div>
<h5>Workshops and Career Guidance</h5>
<p>
Get a chance to attend special technical workshops and proper
career guidance and counselling to give students a broader
perspective of various career opportunities.
</p>
</div>
</div>
<!-- Single Service Area -->
<div class="col-12 col-lg-4">
<div class="single-service-area mb-80">
<!-- Service Icon -->
<div class="service-icon">
<i class="icon_gift_alt"></i>
</div>
<h5>Prizes</h5>
<p>
Students are encouraged to interact, participate and showcase
their skills and get a chance to grab prizes worth Rs. 1.5
Lakhs!!
</p>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Services Area End ***** -->
<!-- ***** Sponsors Area Start ***** -->
<section
class="uza-portfolio-area section-padding-80"
id="sponsors_section"
>
<div class="container">
<div class="row">
<!-- Section Heading -->
<div class="col-12">
<div class="section-heading text-center">
<h2>Sponsors</h2>
<!--<h5>To be announced...</h5>-->
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<!-- Portfolio Slides -->
<div class="portfolio-sildes owl-carousel">
<!-- Single Portfolio Slide -->
<div class="single-portfolio-slide">
<img src="./img/sponsors/ieeesbda.png" alt="IEEE SB DAIICT" />
<!-- Overlay Effect -->
<div class="overlay-effect">
<h1>IEEE SB DAIICT</h1>
<!--<p>
At vero eos et accusam et justo duo dolores et ea rebum. Stet
gubergren no sea takimata sanctus est
</p>-->
</div>
<!-- View More -->
<div class="view-more-btn">
<a href="http://ieee.daiict.ac.in"><i class="arrow_right"></i></a>
</div>
</div>
<!-- Single Portfolio Slide -->
<div class="single-portfolio-slide">
<img src="./img/sponsors/ieeeguj.png" alt=""/>
<!-- Overlay Effect -->
<div class="overlay-effect">
<h1>IEEE Gujarat Section</h1>
<!--<p>
At vero eos et accusam et justo duo dolores et ea rebum. Stet
gubergren no sea takimata sanctus est
</p>-->
</div>
<!-- View More -->
<div class="view-more-btn">
<a href="https://ieeegujaratsection.org/"><i class="arrow_right"></i></a>
</div>
</div>
<!-- Single Portfolio Slide -->
<div class="single-portfolio-slide">
<img src="./img/sponsors/gujcost.png" alt="" />
<!-- Overlay Effect -->
<div class="overlay-effect">
<h1>GUJCOST</h1>
<!--<p>
At vero eos et accusam et justo duo dolores et ea rebum. Stet
gubergren no sea takimata sanctus est
</p>-->
</div>
<!-- View More -->
<div class="view-more-btn">
<a href="https://gujcost.gujarat.gov.in/#"><i class="arrow_right"></i></a>
</div>
</div>
<!-- Single Portfolio Slide -->
<div class="single-portfolio-slide">
<img src="./img/sponsors/Schoollog.jpeg" alt="" />
<!-- Overlay Effect -->
<div class="overlay-effect">
<h1>SCHOOLLOG</h1>
<!--<p>
At vero eos et accusam et justo duo dolores et ea rebum. Stet
gubergren no sea takimata sanctus est
</p>-->
</div>
<!-- View More -->
<div class="view-more-btn">
<a href="https://schoollog.in/"><i class="arrow_right"></i></a>
</div>
</div>
<!-- Single Portfolio Slide -->
<div class="single-portfolio-slide">
<img src="./img/sponsors/careerLauncher.png" alt="" />
<!-- Overlay Effect -->
<div class="overlay-effect">
<h1>CAREER LAUNCHER</h1>
<!--<p>
At vero eos et accusam et justo duo dolores et ea rebum. Stet
gubergren no sea takimata sanctus est
</p>-->
</div>
<!-- View More -->
<div class="view-more-btn">
<a href="https://www.careerlauncher.com/"><i class="arrow_right"></i></a>
</div>
</div>
<!-- Single Portfolio Slide -->
<div class="single-portfolio-slide">
<img src="./img/sponsors/black_position.jpeg" alt="" />
<!-- Overlay Effect -->
<div class="overlay-effect">
<h1>BLACK POSITION</h1>
<!--<p>
At vero eos et accusam et justo duo dolores et ea rebum. Stet
gubergren no sea takimata sanctus est
</p>-->
</div>
<!-- View More -->
<div class="view-more-btn">
<a href="http://www.blackposition.in/"><i class="arrow_right"></i></a>
</div>
</div>
<!-- Single Portfolio Slide -->
<div class="single-portfolio-slide">
<img src="./img/sponsors/techinquiri.png" alt="" />
<!-- Overlay Effect -->
<div class="overlay-effect">
<h1>Techinquiri</h1>
<!--<p>
At vero eos et accusam et justo duo dolores et ea rebum. Stet
gubergren no sea takimata sanctus est
</p>-->
</div>
<!-- View More -->
<div class="view-more-btn">
<a href="https://techinquiri.com/"><i class="arrow_right"></i></a>
</div>
</div>
<!-- Single Portfolio Slide -->
<div class="single-portfolio-slide">
<img src="./img/sponsors/DST logo-large-without background (1).png" alt="" />
<!-- Overlay Effect -->
<div class="overlay-effect">
<h1>DST</h1>
<!--<p>
At vero eos et accusam et justo duo dolores et ea rebum. Stet
gubergren no sea takimata sanctus est
</p>-->
</div>
<!-- View More -->
<div class="view-more-btn">
<a href="https://dst.gov.in/"><i class="arrow_right"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- Border -->
<div class="container">
<div class="border-line"></div>
</div>
<!-- Background Curve -->
<div class="portfolio-bg-curve">
<img src="./img/core-img/curve-3.png" alt="" />
</div>
</section>
<!-- ***** Sponsors Area End ***** -->
<!-- ***** Portfolio Single Area Start ***** -->
<section
class="uza-portfolio-single-area section-padding-80"
id="exam_format"
>
<div class="container">
<div class="section-heading text-center">
<!-- <h2>Exam Format</h2> -->
<div class="single-cf-area mb-100">
<h2><span>Exam Format</span></h2>
</div>
</div>
<div class="row justify-content-between align-items-center">
<div class="col-md-8 col-sm-2 col-xs-6 mx-auto align-items-center">
<div class="portfolio-details-text mx-auto">
<h3 class="mx-auto align-items-center">
The exams will be conducted in Two Stages
</h3>
<ul>
<li>
<h4>
<span style="color: #1583e9">Prelims</span> : 27th December 2020
</h4>
</li>
<li>
<h4>
<span style="color: #1583e9">Mains</span> : 10th January 2021
</h4>
</li>
</ul>
<!-- <h6>Analysis, Marketing</h6> -->
<!--<h3 class="mt-5">Question Paper Format</h3>
<ul>
<li>
<h5>Single Choice Questions</h5>
</li>
<li>
<h5>
<span style="color: #1583e9">4/5 options </span>- 1 correct
</h5>
</li>
<li>
<h5>
<span style="color: #1583e9">90 mins duration </span>- 30
questions
</h5>
</li>
<li>
<h5>
<span style="color: #1583e9">Difficulty</span> based on the
current grade/standard of the student
</h5>
</li>
</ul>-->
<h3 class="mt-5">Exam Topics</h3>
<ul>
<li><h6>General Aptitude</h6></li>
<li><h6>Verbal Reasoning</h6></li>
<li>
<h6>Non-verbal Reasoning</h6>
</li>
<li><h6>Quant</h6></li>
<li>
<h6>Any other related topic</h6>
</li>
</ul>
</div>
</div>
<!-- <div class="col-6 align-items-center">
<div class="portfolio-details-text">
<h2>Two Stages</h2>
<ul>
<li>
<h4>
<span style="color: #1583e9"></span> Single Choice Questions
</h4>
</li>
<li>
<h4>
<span style="color: #1583e9">4/5 options</span> - 1 correct
</h4>
</li>
<li>
<h4>
<span style="color: #1583e9">90 mins duration</span> - 30
questions
</h4>
</li>
<li>
<h4>
<span style="color: #1583e9">Difficulty</span> based on the
current grade/standard of the student
</h4>
</li>
</ul>
</div>
</div> -->
</div>
</div>
</section>
<!-- ***** Portfolio Single Area End ***** -->
<!--Registration form-->
<!--<form class="form-inline">
<input type="email" class="form-control flex-fill mr-0 mr-sm-2 mb-3 mb-sm-0" id="inputEmail" placeholder="Enter email address...">
<button type="submit" class="btn btn-primary mx-auto">Subscribe</button>
</form>-->
<!--<div class="custom-file-upload">
<h1>FireBase Storage Example <span style="font-size: 1em; margin-left: 2%"class="glyphicon glyphicon-fire"></span></h1>
<input type="file" onchange="previewFile()" id="files" name="files[]" multiple />
<div>-->
<!--Registration form End-->
<!-- FAQs -->
<section class="section-padding-80 faq-section" id="faqs">
<div class="container">
<div class="section-heading text-center">
<div class="single-cf-area mb-100">
<h2><span>FAQs</span></h2>
</div>
</div>
<!-- <div class="row justify-content-between align-items-center">
<div
class="col-md-8 col-sm-2 col-xs-6 mx-auto align-items-center"
>
</div>
</div> -->
<div class="accordion">
<div class="accordion-item">
<button id="accordion-button-3" aria-expanded="true">
<span class="accordion-title"
>What is the registration fee for MindShout?
</span>
<!-- <span class="icon" aria-hidden="true"></span> -->
</button>
<div class="accordion-content">
<p>There is no registration fee for MindShout, it is absolutely free.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-1" aria-expanded="true">
<span class="accordion-title"
>Can students give the test on mobile?</span
>
<!-- <span class="icon" aria-hidden="true"></span> -->
</button>
<div class="accordion-content">
<p>Yes, there is a mobile app for the same.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-2" aria-expanded="true">
<span class="accordion-title"
>What are the requirements for the exam?</span
>
<!-- <span class="icon" aria-hidden="true"></span> -->
</button>
<div class="accordion-content">
<p>
Participants should be in grade 8-12 and have access to a
mobile/laptop with a stable internet connection.
</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-2" aria-expanded="true">
<span class="accordion-title"
>Will the students of class 8 and class 12 have the same question paper?</span
>
<!-- <span class="icon" aria-hidden="true"></span> -->
</button>
<div class="accordion-content">
<p>
No there will be two sets of question papers. One for class 8, 9, and 10 and another for class 11 and 12, the difficulty level will be more for classes 11 and 12.
</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-3" aria-expanded="true">
<span class="accordion-title"
>Is this a team or an individual event?
</span>
<!-- <span class="icon" aria-hidden="true"></span> -->
</button>
<div class="accordion-content">
<p>This is strictly an individual event.</p>
</div>
</div>
</div>
</div>
</section>
<!-- FAQs End -->
<!-- ***** Blog Area Start ***** -->
<section class="uza-blog-area" id="contact_numbers">
<!-- Background Curve -->
<!--<div class="blog-bg-curve">
<img src="./img/core-img/curve-4.png" alt="" />
</div>-->
<!-- CTA Area Start -->
<!--<div class="uza-cta-area section-padding-0-80">
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-lg-7">
<div class="cta-content mb-80">
<h2>Interested in taking the test?</h2>
<h6>Give us a call!</h6>
</div>
</div>
<div class="col-12 col-lg-5">
<div class="cta-content">
<div class="call-now-btn">
<a href="#"><span>Prabhav Shah: </span>+91 9106505620</a>
</div>
</div>
<div class="cta-content mb-80">
<div class="call-now-btn">
<a href="#"><span>Fenil Kamdar: </span>+91 9825206109</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!-- CTA Area End -->
<!-- ***** Footer Area Start ***** -->
<footer class="footer-area section-padding-80-0">
<div class="container">
<div class="row justify-content-between">
<!-- Single Footer Widget -->
<div class="col-12 col-sm-6 col-lg-3">
<div class="single-footer-widget mb-80">
<!-- Widget Title -->
<h4 class="widget-title">Contact Us</h4>
<!-- Footer Content -->
<div class="footer-content mb-15">
<h5>Prabhav Shah</h5>
<a href="tel:+919106505620"><h3>(+91) 9106505620</h3></a>
<h5>Fenil Kamdar</h5>
<a href="tel:+919825206109"><h3>(+91) 9825206109</h3></a>
</div>
</div>
</div>
<!-- Single Footer Widget -->
<div class="col-12 col-sm-6 col-lg-3">
<div class="single-footer-widget mb-80">
<!-- Widget Title -->
<!-- <h4 class="widget-title">Quick Link</h4> -->
<h5 style="color: #1583e9">
Dhirubhai Ambani Institute of Information and Communication
Technology
</h5>
<h6>Gandhinagar, Gujarat</h6>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<!-- Single Footer Widget -->
<div class="col-10 col-sm-3 col-lg-3">
<div class="single-footer-widget mb-80">
<!-- Widget Title -->
<!-- <h4 class="widget-title">Resources</h4> -->
<a href="https://daiict.ac.in" target="_blank"
><img
src="https://ieee-sb-daiict.github.io/ieee-2020/img/dalogo.png"
alt=""
/></a>
</div>
</div>
<!-- Single Footer Widget -->
<div class="col-12 col-sm-6 col-lg-3">
<div class="single-footer-widget mb-80">
<!-- Widget Title -->
<h4 class="widget-title">About Us</h4>
<p>IEEE Student Branch, DAIICT</p>
<!-- Copywrite Text -->
<div class="copywrite-text mb-30">
<p style="color: white">
© Copyright 2018
<a href="#" style="color: white">Colorlib</a>.
</p>
</div>
<!-- Social Info -->
<div class="footer-social-info">
<a
href="https://www.facebook.com/ifestdaiict/"
class="facebook"
data-toggle="tooltip"
data-placement="top"
title="Facebook"
target="_blank"
><i class="fa fa-facebook"></i
></a>
<a
href="https://www.linkedin.com/company/ieee-student-branch-daiict/"
class="linkedin"
data-toggle="tooltip"
data-placement="top"
title="LinkedIn"
target="_blank"
><i class="fa fa-linkedin"></i
></a>
<a
href="mailto:[email protected]"
class="pinterest"
data-toggle="tooltip"
data-placement="top"
title="E-Mail"
target="_blank"
><i class="fa fa-envelope"></i
></a>
<a
href="https://instagram.com/i.fest"
class="instagram"
data-toggle="tooltip"
data-placement="top"
title="Instagram"
target="_blank"
><i class="fa fa-instagram"></i
></a>
<a
href="https://www.youtube.com/channel/UC6W55GI1uB5us0sMMvryb3A"
class="youtube"
data-toggle="tooltip"
data-placement="top"
title="YouTube"
target="_blank"
><i class="fa fa-youtube-play"></i
></a>
</div>
</div>
</div>
</div>
<div class="row" style="margin-bottom: 30px; color: white">
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>
All rights reserved | This template is made with
<i class="fa fa-heart-o" aria-hidden="true"></i> by
<a href="https://colorlib.com" target="_blank" style="color: white"
>Colorlib</a
>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
</div>
</div>
</footer>
<!-- ***** Footer Area End ***** -->
<!-- ******* All JS Files ******* -->
<!-- jQuery js -->
<script src="./js/jquery.min.js"></script>
<!-- Popper js -->
<script src="./js/popper.min.js"></script>
<!-- Bootstrap js -->
<script src="./js/bootstrap.min.js"></script>
<!-- All js -->
<script src="./js/uza.bundle.js"></script>
<!-- Active js -->
<script src="./js/default-assets/active.js"></script>
<!-- Active Section NavMenu Highlight -->
<script src="https://unpkg.com/[email protected]/dist/active-menu-link.js"></script>
<script>
let options = {
itemTag: 'li',
activeClass: 'current-item',
headerHeight: 100,
};
new ActiveMenuLink('.classynav', options);
</script>
</body>
</html>