-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
1160 lines (1117 loc) · 45.9 KB
/
home.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
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" content="noodp " />
<meta name="title" content="Siddhrajsinh Gohil Portfolio - Welcome to my Website">
<meta name="description" content="I am Siddhrajsinh Gohil from surat, I am an search engine Optimizer,Search Engine Marketer and Social media management expert">
<meta name="keywords" content="siddhraj website,siddhrajsinh website,siddhraj gohil website,siddhraj gohil,siddhraj gohil portfolio,siddhraj gohil surat,siddhrajsinh gohil,siddhrajsinh gohil surat, search engine expert in surat,social media manager in surat,i need social media manager,search engine optimizer,SEO expert,search engine optimization expert in surat,siddhu,sid in surat,">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="Siddhrajsinh Ranjitsinh Gohil">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K1QS685E8B"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-K1QS685E8B');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Siddhrajsinh Gohil Portfolio">
<meta property="og:site_name" content="Portfolio">
<meta property="og:url" content="https://sidddev7.github.io/portfolio/">
<meta property="og:description" content="">
<meta property="og:type" content="article">
<meta property="og:image" content="https://sidddev7.github.io/portfolio/assets/images/w1.png">
<title> Siddhrajsinh Gohil Portfolio </title>
<!-- favicon -->
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon">
<!-- bootstrap -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- fontawesome -->
<link rel="stylesheet" href="assets/css/fontawesome.min.css">
<!-- Flat Icon -->
<link rel="stylesheet" href="assets/css/flaticon.css">
<!-- animate -->
<link rel="stylesheet" href="assets/css/animate.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<!-- magnific popup -->
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<!-- stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- responsive -->
<link rel="stylesheet" href="assets/css/responsive.css">
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "LocalBusiness",
"name" : "Siddhrajsinh Gohil",
"image" : [ "https://sidddev7.github.io/web/assets/images/w3.png", "https://sidddev7.github.io/web/assets/images/w1.png" ]
}
</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"Google Certified Digital Marketer","acceptedAnswer":{"@type":"Answer","text":"I have cleared the <a href=https://drive.google.com/file/d/1g_WJXLv1I01eHpKP5OJ-B8uZThzU7XZ7/view?usp=sharing> Google Digital Marketer</a> Certification Exam in March 2020"}},{"@type":"Question","name":"Google Ads Display Certificate","acceptedAnswer":{"@type":"Answer","text":"Google Taught the Ads structures in this Course and awarded the <a href=https://drive.google.com/file/d/1d0xtqZqsl2E7z465Ab04wZ55higJQh_5/view?usp=sharing>Certificate</a> after Clearing the exam"}},{"@type":"Question","name":"Google Analytics Certificate Exam","acceptedAnswer":{"@type":"Answer","text":"I have learnt about the google analytics platform and got hands-on practical on Data of Google merchandise store,and was awarded <a href=https://drive.google.com/file/d/1Vknqd9c8B7J6-OdkuMxhCDfu4oNUTLES/view?usp=sharing> Certificate</a> after clearing the exam"}},{"@type":"Question","name":"Google My Business Certification","acceptedAnswer":{"@type":"Answer","text":"In this course,Google gave a brief knowledge about how google my business works, how to create listing,how to update the listing and much more. Google awarded the <a href=https://drive.google.com/file/d/10eYGkfS7k5AcwRE6gFB9lkchlPNc3_u5/view?usp=sharing> Certificate</a> after i cleared the exam"}}]}</script>
<html>
<head>
<title>About Us</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"url": "https://sidddev7.github.io/web/home.html",
"logo": "https://sidddev7.github.io/web/assets/images/w3.png"
}
</script>
</head>
<body>
</body>
</html>
</head>
<body class="dark">
<!-- Navebar Area start -->
<header class="navigation">
<div class="container">
<div class="row">
<div class="col-lg-12 p-0">
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="#home">
<img src="assets/images/logo-color2.png" alt="">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#mainmenu"
aria-controls="mainmenu" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="mainmenu">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#project">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">My Certificate</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://drive.google.com/file/d/1lmXD4JmA1cHtL401KZHDUT0jARxZdt_i/view?usp=sharing" title="My Resume" rel="nofollow" target="_blank">Resume</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</header>
<!-- Navebar Area End -->
<!-- Hero Area Start -->
<div id="home" class="hero-area">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex align-self-center">
<div class="left-content">
<div class="content">
<h1 class="title">
Siddhrajsinh Gohil Portfolio
</h1>
<p class="subtitle" style="text-align: justify;">
Welcome to my Website,
I am from India,<br>the reason for creating this portfolio is to provide brief information about me.
</p>
<div class="links">
<a href="#about" class="mybtn2" ><span>Know More</span> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 order-first order-lg-last">
<div class="right-img">
<!-- <div class="discount-circle">
<div class="discount-circle-inner">
<div class="price">
<i class="fas fa-user fa-2x"></i>
<span style="">Sid</span>
</div>
</div>
</div>-->
<img class="img-fluid img" src="assets/images/w3.png" alt="Siddhrajsinh Gohil">
</div>
</div>
</div>
</div>
</div>
<!-- Hero Area End -->
<!-- About Area Start -->
<section class="about" id="about">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8">
<div class="section-title extra">
<h2 class="title">About me</h2>
<p style="text-align: center;">
I Currently live in Surat,Gujarat. Here is my breif information about my acedemics
</p>
</div>
</div>
</div>
<div class="row justify-content-between">
<div class="col-lg-5 align-self-center">
<div class="iamge">
<img src="assets/images/w1.png" alt="">
</div>
</div>
<div class="col-lg-6">
<div class="row">
<div class="col-md-6">
<div class="box one">
<div class="inner-box">
<div class="icon">
<i class="fas fa-user-graduate"></i>
</div>
<h4 class="title">BE I.T (Pursuing)</h4>
<p class="text">
I am Currently Pursuing Information Technology Degree from GTU<br />
<a style="color: white; font-size: 20px;font-weight: bold;" href="https://drive.google.com/drive/folders/1nLlTKWAT-SJs0ekv1IZcdfi-pi7VzKpi" title="College Results" target="_blank" rel="nofollow"><i class="fas fa-poll"></i>Results</a>
</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="box two">
<div class="inner-box">
<div class="icon">
<i class="fas fa-school"></i>
</div>
<h4 class="title">12<sup>th</sup> Standard</h4>
<p class="text">
I have completed 12 <sup>th</sup> standard from CBSE board with 8.2 CGPA<br>
<a style="color: white; font-size: 20px;font-weight: bold;" href="https://drive.google.com/file/d/1VrqjPuAI24eNaNaFtUSGUFbwhQFYY7BS/view" title="12th Results" target="_blank" rel="nofollow"><i class="fas fa-poll"></i>Result</a>
</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="box three">
<div class="inner-box">
<div class="icon">
<i class="fas fa-school"></i>
</div>
<h4 class="title"> 10<sup>th</sup> Standard</h4>
<p class="text">
I have completed 10<sup>th</sup> standard from CBSE board with 8.2 CGPA<br>
<a style="color: white; font-size: 20px;font-weight: bold;" href="https://drive.google.com/file/d/1VsQ740GSbRy0Widhh86ZXLAIfl2c82lk/view" title="10th Results" target="_blank" rel="nofollow"><i class="fas fa-poll"></i>Result</a>
</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="box four">
<div class="inner-box">
<div class="icon">
<i class="flaticon-apps"></i>
</div>
<h4 class="title">My Projects</h4>
<p class="text">
I have done several individual and Group projects in College time <br>
<a href="#project" title="Click to go to my project page" style="color: white; font-size: 20px;font-weight: bold;"><i class="fas fa-fingerprint"></i>Know projects</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Area End -->
<!-- We are best Area Start -->
<section class="whaybest" id="project">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8">
<div class="section-title extra">
<h2 class="title">About My Projects</h2>
<p>
I have done several individual and group projects in College.
</p>
</div>
</div>
</div>
<div class="row ">
<div class="col-lg-6">
<div class="info">
<ul class="feature-list">
<li>
<div class="icon">
<i class="fas fa-umbrella"></i>
</div>
<div class="content">
<h4>SSIP Competition held at KCG,Ahmdabad</h4>
<p>Me and my team participated in student startup innovation program
where our project was about "City air purifier".Our project has been selected for the grant from Government
</p>
</div>
</li>
<li>
<div class="icon">
<i class="fas fa-id-card"></i>
</div>
<div class="content">
<h4>Arogya Card</h4>
<p>My Final year project, this project is for saving the health reports of
patient on cloud and provide other necessary services
</p>
</div>
</li>
<li>
<div class="icon">
<i class="fas fa-file-pdf"></i>
</div>
<div class="content">
<h4>PDF to Speech Converter</h4>
<p>Python Project in which input pdf is converted to Speech automatically using various Libraries,also added support of translating the pdf to any language and then speak.
</p>
</div>
</li>
<li>
<div class="icon">
<i class="fab fa-android"></i>
</div>
<div class="content">
<h4>QR attandance application</h4>
<p>The QR code is Changed for everyday and the employee needs to scan it to register their attendence(In developement phase)
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-6 d-flex order-first order-lg-last">
<div class="about-img">
<img src="assets/images/1.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!--We are best Area Start -->
<!-- Service Area start -->
<section class="feature" id="skills">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8">
<div class="section-title">
<h2 class="title">My Skills</h2>
<p>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="left-feature">
<div class="feature-box feature-box1">
<!--<div class="feature-circle">
<div class="feature-circle-inner"><i class="fas fa-plus"></i></div>
</div>-->
<div class="details">
<h4 class="title">
SEO Expert
</h4>
<p class="text"></p>
</div>
<div class="icon-area">
<div class="icon">
<i class="fab fa-searchengin"></i>
</div>
</div>
</div>
<div class="feature-box feature-box2">
<!--<div class="feature-circle">
<div class="feature-circle-inner"><i class="fas fa-plus"></i></div>
</div>-->
<div class="details">
<h4 class="title">
Social Media Management
</h4>
<p class="text">
</div>
<div class="icon-area">
<div class="icon">
<i class="fab fa-twitter"></i>
</div>
</div>
</div>
<div class="feature-box feature-box3">
<!-- <div class="feature-circle">
<div class="feature-circle-inner"></div>
</div>-->
<div class="details">
<h4 class="title">
App Development
</h4>
<p class="text"></p>
</div>
<div class="icon-area">
<div class="icon">
<i class="fab fa-app-store"></i>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 d-flex justify-content-center">
<div class="center-feature align-self-center">
<img src="assets/images/2.png" alt="">
</div>
</div>
<div class="col-lg-4">
<div class="right-feature">
<div class="feature-box feature-box4">
<!--<div class="feature-circle">
<div class="feature-circle-inner"></div>
</div>-->
<div class="icon-area">
<div class="icon">
<i class="fas fa-camera-retro"></i>
</div>
</div>
<div class="details">
<h4 class="title">
VideoGraphy & Photography
</h4>
<p class="text"></p>
</div>
</div>
<div class="feature-box feature-box5">
<!-- <div class="feature-circle">
<div class="feature-circle-inner"></div>
</div>-->
<div class="icon-area">
<div class="icon">
<i class="fas fa-chart-line"></i>
</div>
</div>
<div class="details">
<h4 class="title">
Data Analytics
</h4>
<p class="text"></p>
</div>
</div>
<div class="feature-box feature-box6">
<!-- <div class="feature-circle">
<div class="feature-circle-inner"><i class="fas fa-plus"></i></div>
</div>-->
<div class="icon-area">
<div class="icon">
<i class="fas fa-file-code"></i>
</div>
</div>
<div class="details">
<h4 class="title">
Website Development
</h4>
<p class="text"></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Service Area End -->
<!-- Pricing Area Start
<section class="pricing" id="pricing">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8">
<div class="section-title">
<h2 class="title">Our Awesome Products</h2>
<p>
Prepared is me marianne pleasure likewise debating. Wonder an unable except better stairs do ye admire.
His secure called esteem praise.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="product-slider">
<div class="item">
<div class="single-product">
<div class="img">
<img src="assets/images/w1.png" alt="">
</div>
<div class="content">
<h4 class="title">
Ponno Blue
</h4>
<ul class="stars">
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star-half"></i>
</li>
</ul>
<div class="price">
<p class="new-price">
$135
</p>
<small>
<del>
$193
</del>
</small>
</div>
<div class="links">
<a href="#" class="mybtn1"><span>Buy Now</span> </a>
</div>
</div>
</div>
</div>
<div class="item">
<div class="single-product">
<div class="img">
<img src="assets/images/w2.png" alt="">
</div>
<div class="content">
<h4 class="title">
Ponno Black
</h4>
<ul class="stars">
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star-half"></i>
</li>
</ul>
<div class="price">
<p class="new-price">
$135
</p>
<small>
<del>
$193
</del>
</small>
</div>
<div class="links">
<a href="#" class="mybtn1"><span>Buy Now</span> </a>
</div>
</div>
</div>
</div>
<div class="item">
<div class="single-product">
<div class="img">
<img src="assets/images/w3.png" alt="">
</div>
<div class="content">
<h4 class="title">
Ponno Gray
</h4>
<ul class="stars">
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star-half"></i>
</li>
</ul>
<div class="price">
<p class="new-price">
$135
</p>
<small>
<del>
$193
</del>
</small>
</div>
<div class="links">
<a href="#" class="mybtn1"><span>Buy Now</span> </a>
</div>
</div>
</div>
</div>
<div class="item">
<div class="single-product">
<div class="img">
<img src="assets/images/w4.png" alt="">
</div>
<div class="content">
<h4 class="title">
Ponno White
</h4>
<ul class="stars">
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star"></i>
</li>
<li>
<i class="fas fa-star-half"></i>
</li>
</ul>
<div class="price">
<p class="new-price">
$135
</p>
<small>
<del>
$193
</del>
</small>
</div>
<div class="links">
<a href="#" class="mybtn1"><span>Buy Now</span> </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
pricing part End -->
<!-- Video Area Start
<section class="video" id="video">
<div class="container">
<div class="row">
<div class="col-lg-6 align-self-center">
<div class="row">
<div class="col-lg-12 ">
<div class="section-title">
<h2 class="title">why choose us</h2>
<p>
A animi quae aliquid culpa accusantium
dolorum provident dolor repudiandae enim maxime, quo fuga eveniet iure consequatur suscipit eos.
Consectetur exercitationem voluptatem minima, ipsam quis laudantium quod vero inventore. Ut dolores
ratione velit exercitationem repudiandae dicta placeat delectus ab, soluta consequatur libero.
</p>
</div>
</div>
<div class="col-lg-6">
<div class="fun-box">
<div class="inner-content">
<h5 class="categori"><i class="far fa-check-circle"></i>1 Year Guarantee</h5>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="fun-box">
<div class="inner-content">
<h5 class="categori"><i class="far fa-check-circle"></i>Free Shipping</h5>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="fun-box mb-0">
<div class="inner-content">
<h5 class="categori"><i class="far fa-check-circle"></i>Product Return</h5>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="fun-box mb-0">
<div class="inner-content">
<h5 class="categori"><i class="far fa-check-circle"></i>Dedicated Support</h5>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="video-wrapper">
<div class="video-box">
<div class="overly"></div>
<div class="play-icon">
<a href="https://www.youtube.com/watch?v=4DCTTrGjGU4" class="video-play-btn mfp-iframe">
<i class="fas fa-play"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
Video Area End -->
<!-- Testimonial Area Start
<section class="testimonial-area" id="testimonial-area">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8">
<div class="section-title extra">
<h2 class="title">Our Clients Say </h2>
<p>
Prepared is me marianne pleasure likewise debating. Wonder an unable except better stairs do ye admire.
His secure called esteem praise.
</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-12">
<div class="testimonial-slider">
<div class="item">
<div class="client">
<div class="client-image">
<img src="assets/images/testimonialimage/1.jpg" class="img-fluid" alt="">
</div>
<p class="client-say">
Do play they miss give so up. Words to up style of since world. Way own uncommonly travelling now
acceptance bed compliment solicitude. We leaf to snug on no need.
</p>
<h4 class="client-name">
<a href="#">
Natha Roy
</a>
</h4>
<h5 class="designation">CEO of Apple</h5>
</div>
</div>
<div class="item">
<div class="client">
<div class="client-image">
<img src="assets/images/testimonialimage/2.jpg" class="img-fluid" alt="">
</div>
<p class="client-say">
Do play they miss give so up. Words to up style of since world. We leaf to snug on no need. Way own
uncommonly travelling now acceptance bed compliment solicitude.
</p>
<h4 class="client-name">
<a href="#">
Natasha li
</a>
</h4>
<h5 class="designation">CEO of Facebook</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
Testimonial Area End -->
<!-- Subscribe Area Start
<div class="subscribe-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8">
<div class="section-title extra">
<h2 class="title">Subscribe to get updates</h2>
<p>
Prepared is me marianne pleasure likewise debating. Wonder an unable except better stairs do ye admire.
His secure called esteem praise.
</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-8 col-md-10">
<div class="newsletter-form-area">
<form action="#">
<input type="email" placeholder="Your email address...">
<button type="submit">
<span>Subscribe</span> <i class="far fa-paper-plane"></i>
</button>
</form>
</div>
</div>
</div>
</div>
</div>
Subscribe Area End -->
<!-- Partner Area Start -->
<section id="faq" class="faq">
<div class="container">
<div class="section-title extra">
<h2 class="title">My Certifications</h2>
<p>
Here are the details of my certificates for your reference.
</p>
</div>
<div class="row">
<div class="col-lg-6">
<div class="panel-group accordion" id="accordion-1">
<div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#one" aria-controls="one"
class="panel-title">
Google Certified Digital Marketer
</h4>
</div>
<div id="one" class="panel-collapse collapse" aria-labelledby="one" data-parent="#accordion-1">
<div class="panel-body">
<p>
I have cleared the <a style="color: #ff414d;font-weight:bold" href="https://drive.google.com/file/d/1g_WJXLv1I01eHpKP5OJ-B8uZThzU7XZ7/view?usp=sharing" rel="nofollow" title="Digital marketing certificate" target="_blank"> <i class="fas fa-certificate"></i>Google Digital Marketer Certification</a> Exam in March 2020
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#two" aria-controls="two"
class="panel-title">
Google Analytics Certificate Exam
</h4>
</div>
<div id="two" class="panel-collapse collapse" aria-labelledby="two" data-parent="#accordion-1">
<div class="panel-body">
<p>
I have learnt about the google analytics platform and got hands-on practical on Data of Google merchandise store,and was awarded <a style="color: #ff414d;font-weight:bold" href="https://drive.google.com/file/d/1Vknqd9c8B7J6-OdkuMxhCDfu4oNUTLES/view?usp=sharing" rel="nofollow" title="Google Ananlytics Certificate" target="_blank"> <i class="fas fa-certificate"></i>Certificate</a> after clearing the exam
</p>
</div>
</div>
</div>
<!-- <div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#three" aria-controls="three"
class="panel-title">
Which payments options are available ?
</h4>
</div>
<div id="three" class="panel-collapse collapse" aria-labelledby="three" data-parent="#accordion-1">
<div class="panel-body">
<p>
Wicket branch to answer do we. Place are decay men hours tiled. If or of ye throwing friendly
required. Marianne interest in exertion as. Offering my branched confined oh dashwood.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#four" aria-controls="four"
class="panel-title">
How can I get refund for return products ?
</h4>
</div>
<div id="four" class="panel-collapse collapse" aria-labelledby="four" data-parent="#accordion-1">
<div class="panel-body">
<p>
Wicket branch to answer do we. Place are decay men hours tiled. If or of ye throwing friendly
required. Marianne interest in exertion as. Offering my branched confined oh dashwood.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#four2" aria-controls="four2"
class="panel-title">
How can I be confident of the quality ?
</h4>
</div>
<div id="four2" class="panel-collapse collapse" aria-labelledby="four2" data-parent="#accordion-1">
<div class="panel-body">
<p>
Wicket branch to answer do we. Place are decay men hours tiled. If or of ye throwing friendly
required. Marianne interest in exertion as. Offering my branched confined oh dashwood.
</p>
</div>
</div>
</div>-->
</div>
</div>
<div class="col-lg-6 d-flex">
<div class="panel-group accordion" id="accordion-2">
<div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#five" aria-controls="five"
class="panel-title">
Google Ads Display Certificate
</h4>
</div>
<div id="five" class="panel-collapse collapse" aria-labelledby="five" data-parent="#accordion-2">
<div class="panel-body">
<p>
Google Taught the Ads structures in this Course and awarded the <a style="color: #ff414d;font-weight:bold" href="https://drive.google.com/file/d/1d0xtqZqsl2E7z465Ab04wZ55higJQh_5/view?usp=sharing" rel="nofollow" title="Google Ads Certificate" target="_blank"> <i class="fas fa-certificate"></i>Certificate</a> after Clearing the exam
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#six" aria-controls="six"
class="panel-title">
Google My Business Certification
</h4>
</div>
<div id="six" class="panel-collapse collapse" aria-labelledby="six" data-parent="#accordion-2">
<div class="panel-body">
<p>
In this course,Google gave a brief knowledge about how google my business works, how to create listing,how to update the listing and much more. Google awarded the <a style="color: #ff414d;font-weight:bold" href="https://drive.google.com/file/d/10eYGkfS7k5AcwRE6gFB9lkchlPNc3_u5/view?usp=sharing" rel="nofollow" title="Google My Business Certifiation" target="_blank"> <i class="fas fa-certificate"></i>Certificate</a> after i cleared the exam
</p>
</div>
</div>
</div>
<!-- <div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#seven" aria-controls="seven"
class="panel-title">
Which payments options are available ?
</h4>
</div>
<div id="seven" class="panel-collapse collapse" aria-labelledby="seven" data-parent="#accordion-2">
<div class="panel-body">
<p>
Wicket branch to answer do we. Place are decay men hours tiled. If or of ye throwing friendly
required. Marianne interest in exertion as. Offering my branched confined oh dashwood.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#eight" aria-controls="eight"
class="panel-title">
How can I get refund for return products ?
</h4>
</div>
<div id="eight" class="panel-collapse collapse" aria-labelledby="eight" data-parent="#accordion-2">
<div class="panel-body">
<p>
Wicket branch to answer do we. Place are decay men hours tiled. If or of ye throwing friendly
required. Marianne interest in exertion as. Offering my branched confined oh dashwood.
</p>
</div>
</div>
</div>
<div class="panel">
<div class="panel-heading">
<h4 data-toggle="collapse" aria-expanded="false" data-target="#nine" aria-controls="nine"
class="panel-title">
How can I be confident of the quality ?
</h4>
</div>
<div id="nine" class="panel-collapse collapse" aria-labelledby="nine" data-parent="#accordion-2">
<div class="panel-body">
<p>
Wicket branch to answer do we. Place are decay men hours tiled. If or of ye throwing friendly
required. Marianne interest in exertion as. Offering my branched confined oh dashwood.
</p>
</div>
</div>
</div>-->
</div>
</div>
</div>
</div>
</section>
<!--Partner Area End -->
<!-- Contact Area Start -->
<section class="about" id="contact">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8">
<div class="section-title extra">
<h2 class="title">Contact me</h2>
<p style="text-align: center;">
Here are my Contact details.
</p>
</div>
</div>
</div>
<div class="row justify-content-between">
<div class="col-lg-5 align-self-center">