-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDigital-marketting.html
1110 lines (1027 loc) · 49.8 KB
/
Digital-marketting.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 charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Instant Professionals</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- -------------------Full Header Start----------------- -->
<div class="contain_headers">
<!-- ======= First Header ======= -->
<header
id="first_header"
class="d-flex align-items-center header-transparent"
>
<div
class="first_container d-flex "
>
<div class="header_left" ">
<i class="bi bi-geo-alt" style="color:white ; font-size:30px"></i>
<a href="https://goo.gl/maps/XTQZkwEVsRdXqb6v5">
Delhi
</a>
<a href="https://goo.gl/maps/6N7sqp7yhvhtia8g8">
Noida
</a>
<a href="https://goo.gl/maps/3FcNgrsHXAz5fHa9A">
Gurgaon
</a>
<a href="https://goo.gl/maps/aDGYH4m5aaR7r95c7">
Lucknow
</a>
<a href="https://goo.gl/maps/6GxvDEccdkwCwSDu5">
Ghaziabad
</a>
<a href="https://goo.gl/maps/Y3j2dzXr3p53Hirn7">
Rajasthan
</a>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav class="header_right" >
<a href="https://www.facebook.com/Instantprofessional/" target="_blank" class="icon"><i class="bi bi-facebook "></i></a>
<a href="https://www.linkedin.com/company/instantprofessionals" target="_blank" class="icon"><i class="bi bi-linkedin "></i></a>
<a href="https://www.instagram.com/instantprofessional/" target="_blank" class="icon"><i class="bi bi-instagram"></i></a>
<div class="number" style="display: flex;
flex-direction: row;
align-items: center;
">
<i class="bi bi-telephone-outbound-fill" style="font-size:20px; color:white;"></i>
<h6 style="color:white ;margin:0px 10px 0px 10px; ">0120-4550728</h6>
</div>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End First Header -->
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center header-transparent">
<div
class="container d-flex align-items-center justify-content-between"
>
<div class="logo-brand bg-white" height="20px;">
<a href="index.html">
<img
src="assets/img/LOGO3.png"
alt=""
/>
</a>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav id="navbar" class="navbar">
<ul>
<li>
<a class="nav-link scrollto active" href="index.html">Home</a>
</li>
<!-- <li><a class="nav-link scrollto" href="#about">About Us</a></li> -->
<li>
<a class="nav-link scrollto" href="#services">Services</a>
</li>
<li class="dropdown dropdown-menu-right">
<a href="#">
<span>Registration</span>
<i class="bi bi-chevron-down"></i>
</a>
<ul class="dropdown-large-screen">
<div class="row mx-md-0">
<div class="col-md-6">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Tax Registrations</h5>
</div>
</div>
<li>
<a href="GST Registration.html">GST Registration</a>
</li>
<li>
<a href="Pan application.html">PAN Application</a>
</li>
<li><a href="GST Modify.html">GST Modification</a></li>
<li>
<a href="TAN Application.html">TAN Application</a>
</li>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">
Other Registrations
</h5>
</div>
</div>
<li>
<a href="iesregistration.html">IEC Registration</a>
</li>
<li>
<a href="iesmodification.html">IEC Modification</a>
</li>
<li>
<a href="esic registration.html">ESIC Registration</a>
</li>
<li>
<a href="digital signature.html">Digital Signature</a>
</li>
<li>
<a href="Din application.html">DIN Application</a>
</li>
<li>
<a href="epf registration.html">EPF Registration</a>
</li>
<li>
<a href="MSME Registration.html"
>SSI/MSME/Udyog Aadhar Registration</a
>
</li>
</div>
</div>
</ul>
</li>
<li class="dropdown dropdown-menu-right">
<a href="#">
<span>Returns</span>
<i class="bi bi-chevron-down"></i>
</a>
<ul class="dropdown-large-screen">
<div class="row mx-md-0">
<div class="col-md-6">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Returns</h5>
</div>
</div>
<li><a href="GSTreturns.html">GST Returns</a></li>
<li>
<a href="tdsreturns.html">TDS Returns</a>
</li>
<li><a href="pfreturns.html">PF Returns</a></li>
<li>
<a href="incometaxreturns.html">Income Tax Returns</a>
</li>
<li>
<a href="tdsreturnrevision.html"
>TDS Returns Revision</a
>
</li>
<li>
<a href="Esi returns.html">ESI Returns</a>
</li>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Annual Filings</h5>
</div>
</div>
<li>
<a href="companyannualfilling.html"
>Company Annual Filing</a
>
</li>
<li>
<a href="llpannualfilling.html">LLP Annual Filing</a>
</li>
<li><a href="opcfilling.html">OPC Annual Filing</a></li>
</div>
</div>
</ul>
</li>
<li class="dropdown dropdown-menu-right">
<a href="#">
<span>Compliances</span>
<i class="bi bi-chevron-down"></i>
</a>
<ul class="dropdown-xl-screen">
<div class="row mx-lg-0">
<div class="row">
<div class="col-md-4 pad">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Change Services</h5>
</div>
</div>
<li><a href="addadirector.html">Add A Director</a></li>
<li>
<a href="addremove a partner in llp.html"
>ADD/Remove a Partner in LLP</a
>
</li>
<li>
<a href="change of register officeaddress.html"
>Change of Registered Office Address</a
>
</li>
<li><a href="chnagein din.html">Change in Din</a></li>
<li>
<a href="Appointmentofauditors.html"
>Appointment of Auditors</a
>
</li>
<li>
<a href="companynamechange.html"
>Company Name Change</a
>
</li>
<li>
<a href="MOA AOA amendment.html">MOA/AOA Amendment</a>
</li>
</div>
<div class="col-md-4">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Change Service</h5>
</div>
</div>
<li>
<a href="removal regisnationofdirector.html"
>Removal/Registration of Director</a
>
</li>
<li>
<a href="chnage in llp aggrement.html"
>Change in LLP Agreement</a
>
</li>
<li>
<a href="increase in authorizedcapital.html"
>Increase in Authirized Capital</a
>
</li>
<li>
<a href="surrenderyourdin.html">Surrender Your DIN</a>
</li>
<li>
<a href="sharetransfer&transmission.html"
>Share Transfer & Transmission</a
>
</li>
<li>
<a href="llpnamechange.html">LLP Name Change</a>
</li>
<li>
<a href="MOAAOAprinting.html">MOA/AOA Printing</a>
</li>
</div>
<div class="col-md-4">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Closure</h5>
</div>
</div>
<li>
<a href="strikeoffcompany.html">Strike Off Company</a>
</li>
<li>
<a href="strike-off-llp.html">Strike Off LLP</a>
</li>
<li>
<a href="Dissolution-of-firms.html"
>Dissolution Of Firms</a
>
</li>
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Legal Drafting</h5>
</div>
</div>
<li><a href="">Download Library</a></li>
<li>
<a href="">Customized Drafting</a>
</li>
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Special</h5>
</div>
</div>
<li>
<a href="GST-LUT-LETTEROFundertaking.html"
>GST LUT Letter Of understaking</a
>
</li>
<li>
<a href="gst-cancellation.html">GST Cancellation</a>
</li>
<li>
<a href="dir-3KYC.html">DIR 3 KYC</a>
</li>
<li>
<a href="ROC-Search-Report.html">ROC Search Report</a>
</li>
<li>
<a href="Commencement-of-Business.html"
>Commencement of Business (INC 2OA) Filling</a
>
</li>
</div>
</div>
</div>
</ul>
</li>
<li class="dropdown dropdown-menu-right">
<a href="#">
<span>Trademark & other IPRs</span>
<i class="bi bi-chevron-down"></i>
</a>
<ul class="dropdown-xl-screen" style="margin-right: 100px">
<div class="row mx-lg-0">
<div class="row">
<div class="col-md-4 pad">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Trademark</h5>
</div>
</div>
<li>
<a href="Trademark-registration.html"
>Trademark Registration</a
>
</li>
<li>
<a href="Trademark-assignment.html"
>TRADEMARK ASSIGNMENT</a
>
</li>
<li>
<a href="Trademark-opposition.html"
>TRADEMARK OPPOSITION</a
>
</li>
<li>
<a href="trademark-restification.html"
>TRADEMARK RESTIFICTION</a
>
</li>
<li>
<a href="International-trademark-registration.html"
>International trademark registration</a
>
</li>
</div>
<div class="col-md-4">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">
<br />
</h5>
</div>
</div>
<li>
<a href="trademark-objections.html"
>Trademark Objections</a
>
</li>
<li>
<a href="trademark-renewal.html">Trademark Renewal</a>
</li>
<li>
<a href="trademark-withdrawal.html"
>Trademark Withdrawal</a
>
</li>
<li>
<a href="trademark-watch-service.html"
>Trademark watch services</a
>
</li>
</div>
<div class="col-md-4">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Copyright</h5>
</div>
</div>
<li>
<a href="Copyright-application.html">
Copyright Application</a
>
</li>
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Patent</h5>
</div>
</div>
<li>
<a href="patient-registration.html"
>Patent Registration</a
>
</li>
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">
Designing & Marketing
</h5>
</div>
</div>
<li>
<a href="LOGO-Designing.html">LOGO Designing</a>
</li>
<li>
<a href="Digital-marketting.html"
>Digital Marketing</a
>
</li>
</div>
</div>
</div>
</ul>
</li>
<li class="dropdown dropdown-menu-right">
<a href="#">
<span>
Account
</span>
<i class="bi bi-chevron-down"></i>
</a>
<ul class="dropdown-xl-screen" style="margin-right: 100px">
<div class="row mx-lg-0">
<div class="row">
<div class="col-md-4 pad">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Login/Services</h5>
</div>
</div>
<li id="login/service"></li>
<li id="isuser"></li>
</div>
</div>
</div>
</ul>
</li>
<!-- <li class="dropdown dropdown-menu-right">
<a href="#">
<span>Login/Register</span>
<i class="bi bi-chevron-down"></i>
</a>
<ul class="dropdown-xl-screen" style="margin-right: 100px">
<div class="row mx-lg-0">
<div class="row">
<div class="col-md-4 pad">
<div class="row">
<div class="col-12 ps-4 mt-3">
<h5 class="border-bottom pb-2">Login/Register</h5>
</div>
</div>
<li>
<a href="LoginForm.html"
>Login/Register</a
>
</li>
<li>
<a href="Trademark-assignment.html"
>Your Services</a
>
</li>
</div>
</div>
</div>
</ul>
</li> -->
<!-- <li><a class="nav-link scrollto" href="#team">Team</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#Media">Media</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#Knowledge">Knowledge Bank</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#Query">Query</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#Carrier">Carrier</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#Admin">Admin</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#contact">Contact Us</a></li> -->
</ul>
<i class="bi bi-list mobile-nav-toggle text-dark"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
</div>
<!-- -------------------Full Header End----------------- -->
<div class="container my-5 mt-5 py-5">
<div class="row">
<div class="col-md-4 my-5 py-5">
<h1 class="text-style">Get the best </h1>
<h2>Digital Marketing Plans </h2>
<hr>
<p>Promote your business digitally. Get the best plans for marketing on digital platforms with
Instant Professionals. Acquire Digital Marketing Services. Prices starts at INR 6999/- only.
</p>
</div>
<div class="col-md-4">
<img class="img-fluid" src="assets/img/people/8.png
" alt=" ">
</div>
</div>
</div>
<div class="container-one">
<div class="container py-5">
<h1 class="text-center">What is Digital Marketing Services in India? </h1>
<h5 class=" text-center"><strong>Everything you need to know about Digital Marketing Plans </strong></h5>
<hr>
<p><strong>What is Marketing?</strong>
</p>
<ul>
<li class="zw-list zw-paragraph heading0" data-header="0" data-margin-left="0.5in"
data-text-indent="-0.25in" data-margin-bottom="0pt" data-hd-info="0" data-list-id="81160583"
data-list-info="{"id":"81160583","l":0}">Marketing is a medium for
creating and communicating to consumers, clients, partners and society at large.</li>
<li class="zw-list zw-paragraph heading0" data-header="0" data-margin-left="0.5in"
data-text-indent="-0.25in" data-margin-bottom="0pt" data-hd-info="0" data-list-id="81160583"
data-list-info="{"id":"81160583","l":0}">Marketing includes
advertising, selling, and delivering products to consumers or other businesses”.</li>
<li class="zw-list zw-paragraph heading0" data-header="0" data-margin-left="0.5in"
data-text-indent="-0.25in" data-margin-bottom="0pt" data-hd-info="0" data-list-id="81160583"
data-list-info="{"id":"81160583","l":0}">Marketing has always been
about connecting with the audience in the right place and at the right time.</li>
<li class="zw-list zw-paragraph heading0" data-header="0" data-margin-left="0.5in"
data-text-indent="-0.25in" data-margin-bottom="0pt" data-hd-info="0" data-list-id="81160583"
data-list-info="{"id":"81160583","l":0}">Today, that means you need to
meet them where they are already spending time: on the internet.</li>
</ul>
<p><strong>What is Digital Marketing?</strong></p>
<p>Digital Marketing is nothing but marketing on digital or online platforms. Digital marketing plan is all
about marketing efforts that use an electronic device or the internet. In short, any kind of marketing
that exists online is called digital
marketing.
</p>
<p>Digital marketing is a method used for the promotion of products or services through various tools and
forms of electronic media, mainly based on the internet.
</p>
<p><strong>How can Digital Marketing help your business? </strong></p>
<p>In today’s era, where everything has shifted on to the online platforms and every person has easy access
to the digital platforms, Digital Marketing helps boost your business and helps your brands to reach out
to customers, clients and society
at large.
</p>
<p>Also, Digital Marketing has no boundaries as far as the geographical grounds are concerned. Hence, it can
reach out to masses considering the amount of time the world spends online and the variety of digital
platforms available. Moreover,
there is not one but many ways to cater for your business digitally. So this is how digital marketing
will help your business.
</p>
<p><strong>Requirements to acquire Instant Professionals Digital Marketing Service</strong></p>
<ul>
<li class="zw-list zw-paragraph heading0" data-header="0" data-margin-left="0.5in"
data-text-indent="-0.25in" data-margin-bottom="0pt" data-hd-info="0" data-list-id="69601449"
data-list-info="{"id":69601449,"l":0}">Description of the products</li>
<li class="zw-list zw-paragraph heading0" data-header="0" data-margin-left="0.5in"
data-text-indent="-0.25in" data-margin-bottom="0pt" data-hd-info="0" data-list-id="69601449"
data-list-info="{"id":69601449,"l":0}">Description of the brand</li>
<li class="zw-list zw-paragraph heading0" data-header="0" data-margin-left="0.5in"
data-text-indent="-0.25in" data-margin-bottom="0pt" data-hd-info="0" data-list-id="69601449"
data-list-info="{"id":69601449,"l":0}">URL of the social media platforms if any
</li>
</ul>
<p><strong>Why Instant Professionals as your service provider for Digital marketing services in India?
</strong></p>
<p>Instant Professionals is an eminent business platform and a progressive concept, which helps end-to-end
incorporation, compliance, advisory, and management consultancy services to clients all over the world.
Digital Marketing Service is easy, seamless,
and quickest with us. At Instant Professionals, we also provide services for registration of digital
Marketing Agency, Indian subsidiary, Start up advisory, Secretarial compliance services, Private Limited
Company registration services, Trademark
registration and many more. To get your ISO certification / registration in India online you may get in
touch with our compliance manager on 8209785294 or email info@instantprofessionals for consultation.
</p>
</div>
</div>
<div class="container py-5 ">
<h1 class="text-center ">Monthly Charges for Digital Marketing Services </h1>
<hr>
<div class="row ">
<div class="col-md-4 ">
<div class="card my-5 ">
<div class="card-header card-style text-white ">
<h4 class="text-center ">ESSENTIAL</h4>
<hr>
<h1 class="text-center ">₹ 4999/-</h1>
<h6 class="text-center ">(All Inclusive)</h6>
</div>
<div class="card-body ">
<ul>
<li>6 posts</li>
<li>blog content(1000 words)</li>
<li>3 platforms of your choice(+500 for additional platform)</li>
<li>Additional INR 1000 + 3rd party charges for paid Social Media Promotion</li>
</ul>
<hr>
<p class="text-center ">Easy EMI's | Transparent Pricing</p>
<hr>
<div class="roll text-center ">
<button class="btn card-style ">Checkout</button>
</div>
</div>
</div>
</div>
<div class="col-md-4 ">
<div class="card my-5 ">
<div class="card-header card-style text-white ">
<h4 class="text-center ">ENHANCED</h4>
<hr>
<h1 class="text-center ">₹ 18999/-</h1>
<h6 class="text-center ">(All Inclusive)</h6>
</div>
<div class="card-body ">
<ul>
<li>12 posts</li>
<li>3 blog content(1000 words)</li>
<li>5 platforms of your choice(+500 for additional platform)</li>
<li>Animated Video - 30 secs</li>
<li>Additional INR 1000 + 3rd party charges for paid Social Media Promotion</li>
</ul>
<hr>
<p class="text-center text-blue ">Easy EMI's | Transparent Pricing</p>
<hr>
<div class="roll text-center ">
<button class="btn card-style ">Checkout</button>
</div>
</div>
</div>
</div>
<div class="col-md-4 ">
<div class="card my-5 ">
<div class="card-header card-style text-white ">
<h4 class="text-center ">ULTIMATE</h4>
<hr>
<h1 class="text-center ">₹ 59999/-</h1>
<h6 class="text-center ">(All Inclusive)</h6>
</div>
<div class="card-body ">
<ul>
<li>20 posts</li>
<li>5 blog content(1000 words)</li>
<li>5 platforms(+1 complementary)</li>
<li>2 Animated Videos - 30 secs each</li>
<li>PPC - Campaign Planning + 3rd party charges(Paid directly)</li>
<li>Additional INR 1000 + 3rd party charges for paid Social Media Promotion</li>
</ul>
<hr>
<p class="text-center ">Easy EMI's | Transparent Pricing</p>
<hr>
<div class="roll text-center ">
<button class="btn card-style ">Checkout</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-three "
style="background:linear-gradient(135deg, rgba(0, 0, 0, 0.8)30%, rgba(0, 0, 0,0.8)100%),url(assets/img/pen.jpg); background-size:100% 100%; ">
<div class="container py-2 ">
<div class="row d-flex justify-content-center ">
<div class="col-md-6 py-5 list-style text-white ">
<h1 class="text-center "><strong>Benefits / Advantages of Digital Marketing Services</strong></h1>
<ul>
<li><strong>Global Reach: </strong>Since Digital Marketing has no geographical boundaries so by
acquiring Digital Marketing Services, you can reach out to the mass of your clients and
customers. Digital Marketing is a platform that
helps you reach every corner of the world through online platforms.</li>
<li><strong>Lower Cost, bigger benefits: </strong>Digital Marketing if done with proper planning
and by setting a proper target can reach out to the larger customer groups at a lower cost
than traditional marketing methods. Also, a
well planned Digital Marketing Plan can leave a great and positive impact on the customer
and clients.</li>
<li><strong>Builds Brand Credibility: </strong>The brands that are marketed through online
platforms, gain more credibility quickly and sustainably. Digital platforms help connect the
customer directly to the brand owner, there
is no mediator and hence builds trust and credibility. A company can address customers’
doubts, clarify important concepts, and show that it understands what drives its market.
</li>
<li><strong>Improved Conversion Rates: </strong>Through Digital Marketing, the customers have
direct access to the services, brands or products of a business. This carves the way for
better interactions with the targeted audience and
hence, improves the possibilities of getting the leads. The Prompt responses to the leads so
received may increase the conversion rates.</li>
<li><strong>Real time results: </strong>The Digital Marketing plans or strategies provide real
time results. It lets you know the effectiveness of your approach on the spot. By
understanding the results and scenario live, you can plan
your strategies accordingly and take all the necessary steps to improve the results.</li>
<li><strong>Saves time and energy: </strong>By acquiring Instant Professionals Digital
Marketing
services, you can save your time and energy. You can focus on the core areas of your
business not worrying about how your brand will reach
the audience. All the marketing strategies and plans will be taken care by Instant
Professionals
efficient Marketing team.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container-three my-5"
style="background:linear-gradient(135deg, rgba(85, 64, 64, 0.8)30%, rgba(0, 0, 0,0.8)100%),url(assets/img/pen.jpg); background-size:100% 100%; ">
<div class="container py-2 ">
<div class="row d-flex justify-content-center ">
<div class="col-md-6 py-5 list-style text-white ">
<h1 class="text-center "><strong>Types of Digital Marketing Platforms</strong></h1>
<ul>
<li class="zw-paragraph heading0" data-header="0" data-margin-bottom="0pt" data-hd-info="0"
data-doc-id="5070236000001376002" data-doc-type="writer"><strong>Website:</strong> The
website is often the best tool to your digital marketing efforts. It is used to host the
content while the other mediums are used to distribute it.</li>
<li class="zw-paragraph heading0" data-header="0" data-margin-bottom="0pt" data-hd-info="0">
<strong>Content Marketing:</strong> Content creation is the spine of your entire Digital
marketing process. Some of the most common formats of content include text (blog posts),
videos, images, infographics, podcasts, slide decks,
and E-Books.</li>
<li class="zw-paragraph heading0" data-header="0" data-margin-bottom="0pt" data-hd-info="0">
<strong>Search Engine Optimization (SEO):</strong> SEO consists of on-page and off-page
activities to boost your website’s visibility in search engine result pages (SERPs) for your
preferred keywords.</li>
<li class="zw-paragraph heading0" data-header="0" data-margin-bottom="0pt" data-hd-info="0">
<strong>Digital Advertising:</strong> Common formats of digital advertising are search
engine marketing (SEM), display advertising, native advertising, advertising on social media
platforms, and programmatic advertising.</li>
<li class="zw-paragraph heading0" data-header="0" data-margin-bottom="0pt" data-hd-info="0">
<strong>Email Marketing:</strong> Email marketing is useful for building the subscriber
base, adding new customers, retaining existing ones, promoting discounts and offers, and
distributing contents.</li>
<li class="zw-paragraph heading0" data-header="0" data-margin-bottom="0pt" data-hd-info="0">
<strong>Social Media Marketing:</strong> Social Media marketing ensures your presence on the
platforms such as Facebook, Twitter, LinkedIn, Snapchat, and Instagram. These are
the platforms where your users invest the
most time on.</li>
<li><strong>Web Analytics:</strong> Web analytics is the practice of collecting, measuring,
analyzing, and reporting data. Web analytics helps marketers to measure their reach in to
the market.</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container-three ">
<div class="container py-5 ">
<h1 class="text-center ">
<strong>How to acquire Digital Marketing Services in India?
</strong></h1>
<h3 class="text-center ">5 Easy Steps</h3>
<div class="row py-5 d-flex justify-content-between pb-0 ">
<div class="col-lg-2 py-3 d-flex justify-content-center ">
<div class="step1 text-center text-white py-3 px-2 ">
<strong>1</strong>
<h6>Drop in Inquiry</h6>
</div>
</div>
<div class="col-lg-3 d-flex justify-content-center py-3 ">
<div class="step2 text-center text-white py-3 ">
<strong>2</strong>
<h6>Fill in the simple checklist
</h6>
</div>
</div>
<div class="col-lg-2 py-3 d-flex justify-content-center ">
<div class="step3 text-center text-white py-3 px-2 ">
<strong>3</strong>
<h6>Your requirements
</h6>
</div>
</div>
<div class="col-lg-3 d-flex justify-content-center py-3 ">
<div class="step4 text-center text-white py-4 ">
<strong>4</strong>
<h6>Planning and Strategies
</h6>
</div>
</div>
<div class="col-lg-2 py-3 d-flex justify-content-center ">
<div class="step5 text-center text-white py-4 px-2 ">
<strong>5</strong>
<h6>Single Point of Contact
</h6>
</div>
</div>
</div>
<hr class="mt-0 ">
<div class="row py-5 ">
<div class="col-md-4 py-3 ">
<div class="card fold ">
<h4 class="card-title text-center card-style text-white py-3 ">Fill in the simple checklist
</h4>
<div class="card-body ">
<div class="center text-center ">
<img src="https://mk0ebizfilingcow6a4i.kinstacdn.com/wp-content/uploads/2017/12/File-checklist-1.png "
alt=" ">
</div>
<p>To acquire Digital Marketing Services fill in the simple checklist with all your
requirements and preferences of work to be done. Our Digital Marketing manager will get
in touch with you to know your requirements. Once you
provide us with the information required by our manager, we will proceed with all the
work and functions that have been assigned to us by you.
</p>
</div>
</div>
</div>
<div class="col-md-4 py-3 ">
<div class="card fold ">
<h4 class="card-title text-center card-style text-white py-3 ">Planning and Strategies </h4>
<div class="card-body ">
<div class="center text-center ">
<img src=" https://mk0ebizfilingcow6a4i.kinstacdn.com/wp-content/uploads/2017/12/Registration-2.png "
lt=" ">
</div>
<p>Once we get the information regarding the areas to be covered under Digital Marketing
services, we will quickly act upon the same. We will assign all the work to the Digital
Marketing Team. In case we need any further information,
insights and details, we will get in touch with you for the same. We will make a rough
draft of every plan and strategies and send it to you for confirmation.
</p>
</div>
</div>
</div>
<div class="col-md-4 py-3 ">
<div class="card fold ">
<h4 class="card-title text-center card-style text-white py-3 "></h4>
<div class="card-body ">
<div class="center text-center ">
<img src=" https://mk0ebizfilingcow6a4i.kinstacdn.com/wp-content/uploads/2017/12/Name-Approval-1.png "
lt=" ">
</div>
<p>Once, the Digital Marketing Plan and strategies are ready, we will assign you with a
Digital Marketing Manager that would be your Single Point of Contact i.e. SPOC. Your
SPOC will be answerable to you in case of any queries
raised by you or in case you need to communicate any further. Here, you will be relieved
from the stress of communicating with so many people.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<!-- <h3>Selecao</h3> -->
<div class="row">
<div class="col-md-4 px-md-5">
<a href="indexhtml"
><img
src="assets/img/LOGO.png"
class="my-2 d-flex float-left"
height="75px;"
width="75px"
/></a>
<p class="text-lg-start">
Instant Professionals are a group of qualified and experienced
professionals. The Professionals have a long standing of over 5
years with specialisation in the field of Business Registrations,
Licenses,Financial Reporting, Tax Planning & Management, Labor
Laws Compliances, Protection & Enforcement of Intellectual
Property Rights and Various other services based on business
requirements and models. The firm has clearly laid down policie
guiding the team to work together with a focused approach. The
firm strives to maintain high degree of professionalism in serving
its clients to the best of their interests. The firm has a vast
experience of serving the industry leaders and has served clients
from almost all sectors of economy.
</p>
<div class="social-links">
<a
href="https://www.linkedin.com/company/instantprofessionals"
class="twitter"
><i class="bx bxl-linkedin"></i
></a>
<a
href="https://www.facebook.com/Instantprofessional/"
class="facebook"
><i class="bx bxl-facebook"></i
></a>
<a
href="https://www.instagram.com/instantprofessional/"
class="instagram"
><i class="bx bxl-instagram"></i
></a>
</div>
</div>
<div class="col-md-2 pl-5 mx-auto">
<h4 class="ml-5">Quick Links</h4>
<ul class="list-unstyled style-ul-footer">
<li>
<a href="https://www.gst.gov.in/">GST</a>
</li>
<li>
<a href="https://www.incometax.gov.in/ ">Income Tax</a>
</li>
<li><a href="https://www.mca.gov.in/ ">MCA</a></li>
<li><a href="https://www.dgft.gov.in/ ">DGFT</a></li>
<li><a href="https://ipindiaonline.gov.in/">IPR India</a></li>
<li><a href="https://www.icai.org/">ICAI</a></li>
<li><a href="https://www.icsi.edu/home/ ">ICSI</a></li>
</ul>
</div>
<div class="col-md-2 text-white">
<h4>Our Services</h4>
<ul class="list-unstyled style-ul-footer">
<li>
<a href=" ">INDIRECT TAX</a>
</li>
<li>
<a href=" ">LIGITATION</a>
</li>
<li>
<a href=" ">TAX</a>
</li>
<li>
<a href=" "> GOODS AND SERVICES TAX</a>