-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
990 lines (981 loc) · 51.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
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
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
<!DOCTYPE html>
<html>
<head>
<!-- Author : Nandpal Mohit -->
<!-- SiteVersion : 1.1.0 -->
<meta charset="utf-8">
<meta name="HandeledFriendly" content="true">
<title>Home Page - Creative Wizards E-Learning & Design Solutions </title>
<meta name="description" content="Creative wizards E-learning and Design solution is ISO:9001-2015 certified Training institute provides industry-oriented training in CAD, CAM, CAE, IT industry.">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keyword" content="IT solutions, Architecture Courses, Architecture Services, Design solutions, E-learning">
<meta name="author" content="Nandpal Mohit">
<!-- google site verification -->
<meta name="google-site-verification" content="eLecf6P_BZVlMmsqhKmY7rD-Ag5jGRClJpfFb8g3pF4" />
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-N7FPG3J');</script>
<!-- End Google Tag Manager -->
<meta name="viewport" content="width=device-width, initial-scale=1.0 , user-scalable=no">
<!-- stylesheet -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- font awesome cdn -->
<script src="https://kit.fontawesome.com/f388db172c.js" crossorigin="anonymous"></script>
<!-- bootstrap cdn -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<!-- google cdn -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- animate cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
</head>
<body>
<main>
<!-- topbar -->
<div class="alert topbar rounded-0 m-0" role="alert" id="topbar">
<div class="row">
<div class="col-md-6" id="data">
<a class="topbar-data" href=""><i class="fas fa-mobile-alt"></i> +916351417732</a>
<a class="topbar-data" href="mailto:info.creativewizards@gmail.com"><i class="fas fa-envelope"></i> info.creativewizards@gmail.com</a>
</div>
<div class="col-md-6" id="social">
<a class="topbar-social" href="https://www.facebook.com/CreativeWizards-111058848061474"><i class="fab fa-facebook"></i></a>
<a class="topbar-social" href="https://www.instagram.com/creativewizards_/"><i class="fab fa-instagram"></i></a>
<a class="topbar-social" href="https://twitter.com/Creative_Vzards?t=ZpBC-OAmZtC9IsUjkrBtYA&s=09"><i class="fab fa-twitter"></i></a>
<a class="topbar-social" href="https://www.linkedin.com/in/creative-wizards-e-learning-and-design-solutions-3b165a226"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
<!-- header -->
<header id="header">
<nav class="navbar navbar-expand-lg navbar-light bg-white" id="navbar">
<a class="navbar-brand" href="/"><img src="/assets/logo/logo.svg" height="60px" alt=""></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarScroll" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- navs -->
<div class="collapse justify-content-center navbar-collapse" id="navbarScroll">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 custom-navbar">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about/">About</a>
</li>
<li class="nav-item dropdown">
<a class="btn btn-white dropdown-toggle active" href="/training/" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-expanded="false">Training</a>
<ul class="dropdown-menu" aria-labelledby="trainingDropDown">
<li><a class="dropdown-item" href="/training/architecture/">Architecture & Interior</a></li>
<li><a class="dropdown-item" href="/training/structure/">Structure</a></li>
<li><a class="dropdown-item" href="/training/project-manager/">Project Manager</a></li>
<li><a class="dropdown-item" href="/training/mechanical/">Mechanical</a></li>
<li><a class="dropdown-item" href="/training/development/">Development</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="/services/">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/faq/">FAQ</a>
</li>
</ul>
<div class="d-flex">
<a class="btn btn-block ot-cw-btn mx-3" href="#cn" type="submit">Enquiry Now</a>
</div>
</div>
</nav>
</header>
<!-- slider -->
<div id="HeaderSlider" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/assets/bg/header/h1.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption">
<h1 class="Sans-Black w-100 d-md-block animate__animated animate__flipInX animate__slow">Welcome to Creative Wizards</h1>
<p class="animate__animated animate__flipInX animate__delay-1s">Creative wizards E-learning and Design solution is ISO:9001-2015 certified Training institute provides industry-oriented training in CAD, CAM, CAE, IT industry.</p>
<a type="button" href="/about/" class="btn cw-btn mt-4">About Us <i class="fas fa-long-arrow-alt-right pl-2"></i></a>
</div>
</div>
<div class="carousel-item">
<img src="/assets/bg/header/h3.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption">
<h1 class="Sans-Black w-100 d-md-block animate__animated animate__flipInX animate__slow">We Serve Design Services </h1>
<p class="animate__animated animate__flipInX animate__delay-1s">Creative wizards training in a wide range of engineering software and coding languages. We also provide design services in Architecture, Engineering & Construction (AEC), Computer-aided structural design and services (CASAD).</p>
<button type="button" class="btn cw-btn mt-4">Let's Meet <i class="fas fa-long-arrow-alt-right pl-2"></i></button>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-target="#HeaderSlider" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-target="#HeaderSlider" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</button>
</div>
<!-- about us -->
<div class="container cw py-5" id="abt">
<div class="row">
<div class="col-md-6">
<small class=" Sans-Semibold cw-info mb-0">Who We Are</small>
<h1 class="Sans-Heavy">We are your trainer and helper.</h1>
<hr class="cw-hr">
<p class="Sans-Medium">Creative wizards E-learning and Design solution is ISO:9001-2015 certified Training institute provides industry-oriented training in CAD, CAM, CAE, IT industry. We offer training in a wide range of engineering software and coding languages. We also provide design services in Architecture, Engineering & Construction (AEC), Computer-aided structural design and services (CASAD).</p>
<a type="submit" href="/about/" class="btn btn-sm ot-cw-btn Sans-Medium">Read More<i class="fas fa-long-arrow-alt-right pl-2"></i></a>
</div>
<div class="col-md-6">
<img src="assets/ab-1.jpg" class="cw-rounded" width="100%" alt="">
</div>
</div>
</div>
<!-- iso container -->
<div class="container-fluid cw py-5 bg-light" id="iso">
<div class="row px-5">
<div class="col-sm-6 mt-5">
<small class="Sans-Semibold cw-info mb-0">ISO 9001:2015 certified</small>
<h1 class="Sans-Heavy">Certified Training Institute</h1>
<hr class="cw-hr">
<p class="Sans-Medium">Creative Wizards E-Learning And Design Solutions has implemented a Quality Management System in comply with standards ISO 9001:2015 certified company to provide Engineering tools Frameworks Training. Our highly motivated and experienced professionals focus on processes and are committed to delivering services of higher quality. Training can provide an opportunity to review the ISO 9001:2015 standard and apply quality management principles in a practice environment<br><br>ISO 9001 is defined as the international standard that specifies requirements for a quality management system (QMS). Organizations use the standard to demonstrate the ability to consistently provide products and services that meet customer and regulatory requirements. </p>
</div>
<div class="col-sm-6 text-center">
<img src="/assets/img/iso.png" width="70%" alt="">
</div>
</div>
</div>
<!-- Courses -->
<div class="container py-5 my-5 cw" id="tr">
<div class="row">
<div class="col-md-6">
<small class=" Sans-Semibold cw-info mb-0">Courses</small>
<h1 class="Sans-Heavy">What We Provides.</h1>
<hr class="cw-hr">
</div>
</div>
<!-- 1-2 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10" onclick="location.href='/training/autocad/'">
<h5 class="cw-cr-text">AutoCAD 2D</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">1</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">2</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">PTC CREO</h5>
</div>
</div>
</div>
</div>
<!-- 3-4 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">Solid works</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">3</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">4</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">Solid Edge</h5>
</div>
</div>
</div>
</div>
<!-- 5-6 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">Ansys</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">5</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">6</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">CATIA</h5>
</div>
</div>
</div>
</div>
<!-- 7-8 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">STAAD. Pro</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">7</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">8</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">STAAD RCDC</h5>
</div>
</div>
</div>
</div>
<!-- 9-10 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">STAAD Foundation</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">9</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">10</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">CSI ETabs</h5>
</div>
</div>
</div>
</div>
<!-- 11-12 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">CSI Safe</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">11</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">12</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">Building Information Modelling (BIM)</h5>
</div>
</div>
</div>
</div>
<!-- 13-14 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">Revit Architecture</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">13</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">14</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">Revit Structure</h5>
</div>
</div>
</div>
</div>
<!-- 15-16 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">Revit MEP</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">15</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">16</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">Google Sketch + Vrays</h5>
</div>
</div>
</div>
</div>
<!-- 17-18 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">3DS Max + Vrays</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">17</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">18</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">Photoshop</h5>
</div>
</div>
</div>
</div>
<!-- 19-20 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">Lumion</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">19</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">20</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">C, C++, Java</h5>
</div>
</div>
</div>
</div>
<!-- 21-22 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10" onclick="location.href='/courses/web-design/index.html'">
<h5 class="cw-cr-text">Web Designing</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">21</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">22</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">App Development</h5>
</div>
</div>
</div>
</div>
<!-- 23-24 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">Python Core</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">23</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-2">
<h4 class="cw-cr-num">24</h4>
</div>
<div class="col-10">
<h5 class="cw-cr-text">Advanced Python</h5>
</div>
</div>
</div>
</div>
<!-- 25-16 -->
<div class="row cw-cr-row" id="courses">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded">
<div class="col-10">
<h5 class="cw-cr-text">Machine Learning With Python</h5>
</div>
<div class="col-2">
<h4 class="cw-cr-num">25</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
</div>
</div>
<!-- services -->
<div class="container py-5 my-5 cw" id="sr">
<div class="row">
<div class="col-md-6">
<small class=" Sans-Semibold cw-info mb-0">Services</small>
<h1 class="Sans-Heavy">What We Offers.</h1>
<hr class="cw-hr">
</div>
</div>
<!-- 1-2 -->
<div class="row cw-sr-row" id="services">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-10">
<h5 class="cw-sr-text">Industry Oriented Software Training</h5>
</div>
<div class="col-2">
<h4 class="cw-sr-num">1</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-2">
<h4 class="cw-sr-num">2</h4>
</div>
<div class="col-10">
<h5 class="cw-sr-text">Structural Analysis and Design</h5>
</div>
</div>
</div>
</div>
<!-- 3-4 -->
<div class="row cw-sr-row" id="services">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-10">
<h5 class="cw-sr-text">Industrial Design</h5>
</div>
<div class="col-2">
<h4 class="cw-sr-num">3</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-2">
<h4 class="cw-sr-num">4</h4>
</div>
<div class="col-10">
<h5 class="cw-sr-text">Architectural Design and Modelling </h5>
</div>
</div>
</div>
</div>
<!-- 5-6 -->
<div class="row cw-sr-row" id="services">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-10">
<h5 class="cw-sr-text">BIM Designing</h5>
</div>
<div class="col-2">
<h4 class="cw-sr-num">5</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-2">
<h4 class="cw-sr-num">6</h4>
</div>
<div class="col-10">
<h5 class="cw-sr-text">Interior Designing</h5>
</div>
</div>
</div>
</div>
<!-- 7-8 -->
<div class="row cw-sr-row" id="services">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-10">
<h5 class="cw-sr-text">Photoshop</h5>
</div>
<div class="col-2">
<h4 class="cw-sr-num">7</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-2">
<h4 class="cw-sr-num">8</h4>
</div>
<div class="col-10">
<h5 class="cw-sr-text">Walk Through</h5>
</div>
</div>
</div>
</div>
<!-- 9-10 -->
<div class="row cw-sr-row" id="services">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-10">
<h5 class="cw-sr-text">3D Rendering</h5>
</div>
<div class="col-2">
<h4 class="cw-sr-num">9</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-2">
<h4 class="cw-sr-num">10</h4>
</div>
<div class="col-10">
<h5 class="cw-sr-text">Estimating & Costing</h5>
</div>
</div>
</div>
</div>
<!-- 11-12 -->
<div class="row cw-sr-row" id="services">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-10">
<h5 class="cw-sr-text">Mechanical Design and Modelling</h5>
</div>
<div class="col-2">
<h4 class="cw-sr-num">11</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-2">
<h4 class="cw-sr-num">12</h4>
</div>
<div class="col-10">
<h5 class="cw-sr-text">Web Designing</h5>
</div>
</div>
</div>
</div>
<!-- 13-14 -->
<div class="row cw-sr-row" id="services">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-10">
<h5 class="cw-sr-text">Project Development</h5>
</div>
<div class="col-2">
<h4 class="cw-sr-num">13</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-2">
<h4 class="cw-sr-num">14</h4>
</div>
<div class="col-10">
<h5 class="cw-sr-text">Software Development</h5>
</div>
</div>
</div>
</div>
<!-- 15-16 -->
<div class="row cw-sr-row" id="services">
<!-- left col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-10">
<h5 class="cw-sr-text">Web Development</h5>
</div>
<div class="col-2">
<h4 class="cw-sr-num">15</h4>
</div>
</div>
</div>
<!-- center col -->
<div class="col-sm-2"></div>
<!-- right col -->
<div class="col-md-5">
<div class="row cw-rounded bg-cw-light">
<div class="col-2">
<h4 class="cw-sr-num">16</h4>
</div>
<div class="col-10">
<h5 class="cw-sr-text">Ai & Machine Learning</h5>
</div>
</div>
</div>
</div>
</div>
<!-- vision -->
<div class="container-fluid cw py-5 my-5" id="vision">
<div class="row px-5">
<div class="col-sm-10">
<small class=" Sans-Semibold cw-info mb-0">What Our Vision</small>
<h1 class="Sans-Heavy text-white">To Boost Your Career.</h1>
<hr class="cw-hr">
<p class="Sans-Medium text-light">In today’s time the most important ingredient which is not being served to the students in schools and colleges are the practical & technical experience required for that particular field and that our vision to fill the gap that any particular student lacks and is not considered to be competent by the professionals in this corporate world. To reach out and help out the students to get the best versions of themselves so they can compete in the cooperate world.</p>
</div>
</div>
</div>
<!-- faq -->
<div class="container py-5 my-5" id="faq">
<small class=" Sans-Semibold cw-info mb-0">Frequently Asked Questions (FAQs)</small>
<h1 class="Sans-Heavy text-black">Any Questions? Look here.</h1>
<hr class="cw-hr">
<div class="accordion" id="faq">
<!-- fa1 -->
<div class="card">
<div class="card-header" id="fa1">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#faOne" aria-expanded="true" aria-controls="faOne">
Q1. What is Creative Wizards E-learning & Design Solutions?
</button>
</h2>
</div>
<div id="faOne" class="collapse" aria-labelledby="fa1" data-parent="#faq">
<div class="card-body">
Creative wizards E-learning and Design solution is ISO:9001-2015 certified Training institute provide industry-oriented training in CAD, CAM, CAE, IT industry. We offer training in a wide range of engineering software and coding languages. We also provide design services in Architecture, Engineering & Construction (AEC), Computer-aided structural design and services (CASAD).
</div>
</div>
</div>
<!-- fa2 -->
<div class="card">
<div class="card-header" id="fa2">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#faTwo" aria-expanded="true" aria-controls="faTwo">
Q2. What are we offering to the people?
</button>
</h2>
</div>
<div id="faTwo" class="collapse" aria-labelledby="fa2" data-parent="#faq">
<div class="card-body">
We offer training to students from Architecture design, Civil engineering, Computer engineering, Computer science, IT, Interior design, Mechanical engineering, Structural engineering background.<br>
We have highly motivated industry-oriented Faculties. We are here to help the students from students to become professionals in their journey. We provide quality education to fulfil the vision.
</div>
</div>
</div>
<!-- fa3 -->
<div class="card">
<div class="card-header" id="fa3">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#faThree" aria-expanded="true" aria-controls="faThree">
Q3. Do you provide any Architectural Services?
</button>
</h2>
</div>
<div id="faThree" class="collapse" aria-labelledby="fa3" data-parent="#faq">
<div class="card-body">
Yes, We are providing architectural services from small residential bungalows to high rise apartments. Our team has the capability and experience to work with minimal inputs from the client through all pre-construction stages of a project, right from preliminary Design Presentations to Permit Documents to Construction Documentation with high level of detailing.
</div>
</div>
</div>
<!-- fa4 -->
<div class="card">
<div class="card-header" id="fa4">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#faFour" aria-expanded="true" aria-controls="faFour">
Q4. Do you provide any Interior Design Services?
</button>
</h2>
</div>
<div id="faFour" class="collapse" aria-labelledby="fa4" data-parent="#faq">
<div class="card-body">
Yes, We provide a full-service interior design that offers design and decorating solutions to residential and small-scale commercial projects. Our services include end-to-end designing and execution of the interior design of your house, which includes furniture, furnishings, decorative lighting, décor accessories, modular kitchen designs, painting and civil work. Because we listen to your desires, then get to work on the entire project.
</div>
</div>
</div>
<!-- fa5 -->
<div class="card">
<div class="card-header" id="fa5">
<h2 class="mb-0">
<button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#faFive" aria-expanded="true" aria-controls="faFive">
Q5. Is this institute only available for Ahmedabad?
</button>
</h2>
</div>
<div id="faFive" class="collapse" aria-labelledby="fa5" data-parent="#faq">
<div class="card-body">
No, We are available through the internet and online classes. We help you through online meetings, classes, calls and multiple apps.
</div>
</div>
</div>
<div class="text-center">
<a type="submit" href="/about/" class="btn btn-sm ot-cw-btn Sans-Medium mt-3">Read More<i class="fas fa-long-arrow-alt-right pl-2"></i></a>
</div>
</div>
</div>
<hr>
<!-- contact -->
<div class="container pyy" id="cn">
<div class="row pb-3">
<div class="col-md-6 mt-5">
<small class=" Sans-Semibold cw-info mb-0">Contact Us</small>
<h1 class="Sans-Heavy">Get In Touch.</h1>
<hr class="cw-hr">
<p class="Sans-Medium">Let's talk about your project and training information. Send us a message and we will be in touch shortly.</p>
<p class="Sans-Medium"><i class="fas fa-envelope mr-2"></i> info.creativewizards@gmail.com</p>
<p class="Sans-Medium"><i class="fas fa-phone-alt mr-2"></i> +916351417732</p>
<p class="Sans-Medium mt-5 cw-primary mb-0 pb-1">Follow Us</p>
<a class="contact-social" href="https://www.facebook.com/CreativeWizards-111058848061474"><i class="fab fa-facebook"></i></a>
<a class="contact-social" href="https://www.instagram.com/creativewizards_/"><i class="fab fa-instagram"></i></a>
<a class="contact-social" href="https://twitter.com/Creative_Vzards?t=ZpBC-OAmZtC9IsUjkrBtYA&s=09"><i class="fab fa-twitter"></i></a>
<a class="contact-social" href="https://www.linkedin.com/in/creative-wizards-e-learning-and-design-solutions-3b165a226"><i class="fab fa-linkedin"></i></a>
</div>
<div class="col-md-6 cw-rounded text-center pt-4 pb-3 cw-form">
<form id="contact-Form" method="post" name="contactForm">
<div class="form-group">
<input type="text" id="name" class="form-control" name="name" value="" placeholder="Your Full Name" required="">
</div>
<div class="form-group">
<input type="email" id="mail" class="form-control" name="mail" value="" placeholder="Your Email ID" required="">
</div>
<div class="form-group">
<input type="number" id="contact" class="form-control" name="contact" value="" placeholder="Your Mobile Number" required="">
</div>
<div class="form-group">
<input type="text" id="subject" class="form-control" name="subject" value="" placeholder="Your Subject" required="">
</div>
<div class="form-group">
<textarea class="form-control" id="message" name="message" rows="4" value="" placeholder="Your Message" required=""></textarea>
</div>
<div class="form-group">
<button type="submit" id="submit-Contact-Btn" class="btn btn-block ot-cw-btn">Contact US</button>
<div id="msg"></div>
</div>
<div class="form-group" id="contactMsg">
<div class="alert bg-cw-light cw-dark" role="alert">
<strong class="Sans-Semibold"><i class="fas fa-check-circle mr-2"></i>Thank you for Contact Us.</strong>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- footer -->
<div class="container-fluid py-5 bg-cw-dark text-center" id="footer">
<!-- subscribe form -->
<h2 class="Sans-Bold cw-light pb-0 mb-0">Subscribe to our Newsletter</h2>
<small class="cw-muted Sans-Light">You will be received our all the latest news and updates.</small>
<div class="row mb-5 mt-3">
<div class="col-md-3"></div>
<div class="col-md-6">
<form method="post" id="subscribe-form" name="subscribeForm">
<div class="input-group mb-2">
<input type="email" class="form-control form-control-lg cw-input" name="sub_email" value="" placeholder="Your Email ID" required="">
<div class="input-group-append">
<button type="submit" class="btn cw-btn subscribe-btn" type="button">Subscribe</button>
</div>
</div>
<div class="form-group" id="subMsg">
<div class="alert bg-cw-light cw-dark" role="alert">
<strong class="Sans-Semibold"><i class="fas fa-check-circle mr-2"></i>Thank you for Subscribe Us.</strong>
</div>
</div>
</form>
</div>
</div>
<!-- footer links -->
<div class="container-fluid text-left pt-5" id="footer-links">
<div class="row">
<div class="col-md-3 text-left">
<h5 class="ft-head">CREATIVE WIZARDS</h5>
<p class="cw-muted text-left"><small>Creative Wizards is an ISO certified and authorized training institute that provides industry orinted, architectural based, graphical & web solutions and design services in the engineering field.</small></p>
</div>
<div class="col-md-3 text-left">
<h5 class="ft-head">Services</h5>
<a href="" class="ft-links">Industry Oriented Software Training</a>
<a href="" class="ft-links">Structural Engineering Services</a>
<a href="" class="ft-links">Industrial Design</a>
<a href="" class="ft-links">Architectural Design Services</a>
<a href="" class="ft-links">BIM Services</a>
<a href="" class="ft-links">2D to 3D Conversion</a>
<a href="" class="ft-links">Interior Design Services</a>
<a href="" class="ft-links">Walk Through</a>
<a href="" class="ft-links">Project Development</a>
<a href="" class="ft-links">Web Development</a>
<a href="" class="ft-links">Other Services</a>
</div>
<div class="col-md-3 text-left">
<h5 class="ft-head">Training</h5>
<a href="" class="ft-links">AutoCAD 2D</a>
<a href="" class="ft-links">STAAD.Pro</a>
<a href="" class="ft-links">ETabs</a>
<a href="" class="ft-links">Building Information Modelling</a>
<a href="" class="ft-links">Revit Architecture</a>
<a href="" class="ft-links">Revit Structure</a>
<a href="" class="ft-links">Sketchup & V-Rays</a>
<a href="" class="ft-links">ANYSYS WORKBENCH</a>
<a href="" class="ft-links">PTC CREO</a>
<a href="" class="ft-links">SOLIDWORKS</a>
<a href="" class="ft-links">PHP Development</a>
<a href="" class="ft-links">Web Development</a>
</div>
<div class="col-md-3 text-left">
<h5 class="ft-head">Links</h5>
<a href="" class="ft-links">Home</a>
<a href="" class="ft-links">About us</a>
<a href="" class="ft-links">Courses</a>
<a href="" class="ft-links">Services</a>
<a href="" class="ft-links">FAQs</a>
<a href="" class="ft-links">Contact us</a>
</div>
</div>
</div>
<!-- footer data-->
<div class="row mb-2 pt-5" id="footer-content">
<div class="col-sm-6 px-5 text-center">
<p class="Sans-Medium cw-muted">Copyrights © 2022 CREATIVE WIZARDS.</p>
</div>
<div class="col-sm-6 px-5 text-center">
<a class="Sans-Medium cw-muted" href="https://nandpalmohit.github.io/nmportfolio/">Designed By Nandpal Mohit.</a>
</div>
</div>
</div>
</main>
<!-- form script -->
<script type="text/javascript">
// subscribe form script
const scriptURL1 = 'https://script.google.com/macros/s/AKfycbz--ycJI0wgj3juPdhN8w_DotZ3vII9uq6boxnNmNjTVaq8wnK0lpD8MsSv1mJEKAxVFA/exec'
const form1 = document.forms['subscribeForm']
form1.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL1, { method: 'POST', body: new FormData(form1)})
.then(response => $("#subMsg").css("display", "block"))
.catch(error => console.error('Error!', error.message))
})
// contact form script
const scriptURL2 = 'https://script.google.com/macros/s/AKfycbzoe66iuiPW_wRUQJozRdhdx6maEaj5HLQpJsVbBd55cr7u5bvM9iT9P_QwmlsSx_k/exec'
const form2 = document.forms['contactForm']
form2.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL2, { method: 'POST', body: new FormData(form2)})
.then(response => $("#contactMsg").css("display", "block"))
.catch(error => console.error('Error!', error.message))
})
</script>
<!-- End form script -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N7FPG3J"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>
<!-- End Bootstrrap JS -->
</body>
</html>