-
Notifications
You must be signed in to change notification settings - Fork 2
/
page3.html
557 lines (507 loc) · 25 KB
/
page3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Start Selling</title>
<style>
*{
font-family: "Market Sans Regular", Sans-serif;
/* padding:1.5px; */
}
h2{
color: #2B0EAF;
}
li{
font-size: 14px;
}
tr{
padding: 50px;
}
.t-a-c{
text-align: center;
line-height: 30px;
margin-bottom: 60px
}
/*
heading navbar part */
#headingnavbar{
display:flex;
width:100%;
height:110px;
margin: auto;
margin-top:0px;
margin-left: 5px;
margin-bottom: 70px;
}
#first{
width:70%;
height: 100px;
background-color: #121258;
border-top: 1px solid black;
padding:20px;
}
#second{
width:200px;
height:140px;
background-color: #082ea1
}
#thirdone{
width:180px;
height:70px;
background-color: #3665f3
}
#thirdsecond{
width:180px;
height:70px;
background-color:#5178ec
}
h1{
color: #FFFFFF;
font-family: "Market Sans Bold", Sans-serif;
font-size: 36px;
font-weight: bold;
}
/* footer */
#div9 {
padding-top: 80px;
border: 1px solid rgb(255, 255, 255);
height: fit-content;
font-family: sans-serif;
display: grid;
grid-template-rows: 1fr 1fr 1fr;
margin: auto;
}
/* Footer Part-1 */
#footer-p1 {
text-align: center;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
gap: 30px;
justify-content: space-evenly;
}
/* Footer Part-1 ancor tag adjustment */
#footer-p1 a {
font-size: 14px;
text-decoration: none;
color: #413d3d;
font-weight: 600;
}
/* Footer Part-2 */
/* Facebook , Instagram and Linkedin href and logo adjustment */
#footer-p2 {
display: flex;
margin: auto;
gap: 10px;
}
/* Footer Part-3 */
#footer-p3 {
margin: auto;
font-size: 12px;
color: #696666;
}
/* Footer Part-3 links adjustment */
#last {
text-decoration: none;
color: rgb(27, 121, 184);
}
</style>
<link rel="stylesheet" href="/css/index.css" />
<link rel="stylesheet" href="/css/popup1.css"/>
<link rel="stylesheet" href="/css/popup2.css"/>
<link rel="stylesheet" href="/css/popup3.css"/>
<link rel="stylesheet" href="/css/popup4.css"/>
<link rel="stylesheet" href="/css/popup5.css"/>
<link rel="stylesheet" href="/css/popup6.css"/>
</head>
<body>
<div id="frame">
<!-- div-1----HEADER -->
<div id="div1" class="header" >
<!-- Nav Bar Header -->
<!-- Ebay Logo and START SELLING Button -->
<div id="navBar1">
<!-- Ebay Logo -->
<div id="ebayLogo">
<a href="/index.html"><img id="logo" title="eBay Logo" src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/EBAY-LOGO.webp" width="190" height="98"/></a>
</div>
<!-- START SELLING Button -->
<div id="start">
<a href="/page1.html" title="Register Here" id="startSelling">START SELLING</a>
</div>
</div>
<!-- Links of options on NAV BAR -->
<div class="navbar">
<div class="dropdown">
<button class="dropbtn"><a id="navSetting">Getting Started </a><i class="fa fa-caret-down"></i></button>
<div class="dropdown-content">
<div class="row">
<div class="column">
<div >
<a><img width="300" src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/why-sell-on-ebay-menu.webp"/></a>
<a id="btn1" href="gettingStarted.html">Why Sell On eBay</a>
</div>
<div >
<a><img width="300"src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/how-to-sell-on-ebay-1.webp"/></a>
<a id="btn1" href="page1.html">How to Sell Globally On ebay</a>
</div>
<div>
<a><img width="300"src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/selling-fees.png"></a>
<a id="btn1" href="https://sellglobal.ebay.in/seller-center/selling-fee/">Selling Fees</a>
</div>
<div>
<a><img width="300"src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/faq-1.webp"></a>
<a id="btn1" href="https://sellglobal.ebay.in/seller-center/faqs/">FAQ'S</a>
</div>
</div>
</div>
</div>
</div>
<!-- Seller Updates -->
<div class="dropdown2">
<button class="dropbtn2"><a id="navSetting">Seller Updates</a><i class="fa fa-caret-down"></i></button>
<div class="dropdown-content2">
<div class="row2">
<div class="column2">
<div>
<a href=""><img width="350" src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/training-calendar.webp"/></a>
<a id="btn2" href="sellerUpdates.html">Seller Training Section</a>
</div>
<div>
<a href="#"><img width="350"src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/seller-community-1.webp"/></a>
<a id="btn2" href="https://community.ebay.in/">Seller Community</a>
</div>
<div>
<a href="#"><img width="350"src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/Announcements.webp"></a>
<a id="btn2" href="https://community.ebay.in/t5/eBay-Announcements/bg-p/eBayAnnouncements">Seller Announcements</a>
</div>
</div>
</div>
</div>
</div>
<div class="dropdown3">
<button class="dropbtn3"><a id="navSetting">About Us</a><i class="fa fa-caret-down"></i></button>
<div class="dropdown-content3">
<div class="row3">
<div class="column3">
<a href="https://sellglobal.ebay.in/seller-center/about-ebay/"><img id="arshad" width="100%" height="auto"src="/images/popAbout.png" alt=""></a>
</div>
</div>
</div>
</div>
<!-- product and listings -->
<div class="dropdown4">
<button class="dropbtn4"><a id="navSetting">Products Listing</a><i class="fa fa-caret-down"></i></button>
<div class="dropdown-content4">
<div class="row4">
<div class="column4">
<h3><u>Create Listing</u></h3>
<a href="https://sellglobal.ebay.in/seller-center/guide-to-creating-your-first-ebay-listing/">Guide to Creating Your First eBay Listing</a>
<a href="https://sellglobal.ebay.in/seller-center/guide-to-creating-your-first-ebay-listing/">Listing Types & Durations</a>
<a href="https://sellglobal.ebay.in/seller-center/guide-to-creating-your-first-ebay-listing/">Create the Perfect Listing</a>
<a href="https://sellglobal.ebay.in/seller-center/guide-to-creating-your-first-ebay-listing/">Multi-Variation and Multi-quantty Listing</a>
<a href="https://sellglobal.ebay.in/seller-center/guide-to-creating-your-first-ebay-listing/">Varified Right Owner Program</a>
<a href="https://sellglobal.ebay.in/seller-center/guide-to-creating-your-first-ebay-listing/">Third Party ServiceProviders</a>
</div>
<div class="column4">
<h3><u>Manage Listing</u></h3>
<a href="https://sellglobal.ebay.in/seller-center/selling-limits-zero-insertion-fee/">Selling limits & Zero insertion fees</a>
<a href="#">Photo Tips</a>
<a href="#">Product Identifiers</a>
<a href="#">Improve search ranking with Item Specifics</a>
<a href="#">Item description best practices</a>
<a href="#">Listing Upgrades</a>
<a href="#">Sellers Updates</a>
<a href="#">Managing Time Away Setting</a>
</div>
</div>
</div>
</div>
<!-- shipping and payments -->
<div class="dropdown5">
<button class="dropbtn5"><a id="navSetting">Shipping & Promotion</a><i class="fa fa-caret-down"></i></button>
<div class="dropdown-content5">
<div class="row5">
<div class="column5">
<h3><u>Shipping</u></h3>
<a href="https://sellglobal.ebay.in/seller-center/introduction-to-cross-border-shipping/">Introduction to Cross Border Shipping</a>
<a href="#">Packing and Shipping Tips</a>
<a href="#">Shipping Options</a>
<a href="#">Tracking Your Orders</a>
</div>
<div class="column5">
<h3><u>Return</u></h3>
<a href="https://sellglobal.ebay.in/seller-center/handling-and-automating-returns/">Handling and Automating Returns</a>
<a href="#">The Benefits of Accepting Returns</a>
<a href="#">How to Minimise Returns</a>
</div>
<div class="column5">
<h3><u>Payment & Fees</u></h3>
<a href="https://sellglobal.ebay.in/seller-center/fee-and-features/">Fee and Features</a>
<a href="#">Getting paid from buyer</a>
<a href="#">Payment Holds</a>
<a href="#">Send Your Buyers an Invoice</a>
<a href="#">How to pay eBay invoice</a>
<a href="#">Tax Information</a>
</div>
</div>
</div>
</div>
<!-- Marketing & Promotions -->
<div class="dropdown6">
<button class="dropbtn6"><a id="navSetting">Marketing & Promotions</a><i class="fa fa-caret-down"></i></button>
<div class="dropdown-content6">
<div class="row6">
<div class="column6">
<h3><u>Store</u></h3>
<a href="/why_get_an_ebay_store.html">Why get an eBay Store</a>
<a href="/why_get_an_ebay_store.html">Setting up your Store</a>
<a href="/why_get_an_ebay_store.html">Store subscription & fees</a>
<a href="/why_get_an_ebay_store.html">Unsubscribing eBay store</a>
</div>
<div class="column6">
<h3><u>Promotions</u></h3>
<a href="/promoted_listings.html">Increase visibility with Promoted Listings</a>
<a href="/promoted_listings.html">Promote and Profit with Promotions Manager</a>
<a href="/promoted_listings.html">Promotional Strategies to Help You Sell More</a>
<a href="/promoted_listings.html">Volume Pricing</a>
<a href="/promoted_listings.html">Sending Offers to Buyers</a>
<a href="/promoted_listings.html">Boost Traffic with SEO</a>
<a href="/promoted_listings.html">Social Media</a>
</div>
<div class="column6">
<h3><u>eBay Services & Tools</u></h3>
<a href="/promoted_listings.html">Terapeak Research Tool</a>
<a href="/promoted_listings.html">Corridor Expansion</a>
<a href="/promoted_listings.html">eBaymag</a>
</div>
</div>
</div>
</div>
<!-- end -->
</div>
</div>
<!-- heading navbar -->
<div id="headingnavbar">
<div id="first"><h1>IEC</h1></div>
<div id="second"></div>
<div>
<div id="thirdone"></div>
<div id="thirdsecond"></div>
</div>
</div>
<div style="margin:20px 120px 20px 60px">
<div>
<div >
<div >
<h2 >IEC: Importer Exporter Code</h2>
</div>
</div>
<div >
<div >IEC is a 10-digit key business Identification number issued
by the Director General of Foreign Trade (DGFT) which is mandatory for
Exports or Imports.
<br>No export or import shall be made
by any person without obtaining an IEC unless specifically exempted.
</div>
</div>
<div >
<div>
<h2 >IEC Registration:</h2>
</div>
</div>
<div >
<div >
<ul >
<li>Visit: <a href="https://www.dgft.gov.in/CP/" target="_blank" rel="noopener">https://www.dgft.gov.in/CP/</a> and complete the registration process</li>
</ul>
<p> OR</p>
<ul>
<li>Need help in getting IEC? You can contact international trade service provider to get your IEC Certificate:</li>
</ul>
</div>
</div>
<div>
<table class="t-a-c">
<thead></thead>
<tbody>
<tr>
<td width="239"><strong><b>Service Provider</b></strong></td>
<td width="383"><strong><b>Details</b></strong></td>
</tr>
<tr>
<td width="239">Service Provider Name</td>
<td width="383">Ismart Books LLP</td>
</tr>
<tr>
<td width="239">Contact Email</td>
<td width="383"><a href="mailto:compliance.ismartbooks@gmail.com">compliance.ismartbooks@gmail.com</a></td>
</tr>
<tr>
<td width="239">Contact Number</td>
<td width="383">+91 98332 56828</td>
</tr>
<tr>
<td width="239">Website</td>
<td width="383"><a href="https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fsmart-books.in%2F&data=04%7C01%7Ccrathore%40ebay.com%7C215c40d988fd4c8905db08d91e8b33f5%7C46326bff992841a0baca17c16c94ea99%7C0%7C0%7C637574405480851637%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=oUvuvGXeX58JbXhV45IaQ0KQpyr7aKkgp%2FZTlFv95FU%3D&reserved=0" target="_blank">http://smart-books.in/</a></td>
</tr>
</tbody>
</table>
</div>
<div >
<div >
<p >The service provider can also assist you in obtaining the following international trade documents:</p>
</div>
</div>
<div >
<div>
<h2 >Service Fee</h2>
</div>
</div>
<div>
<div>
<table class="t-a-c">
<thead></thead>
<tbody>
<tr>
<td width="78"><strong>S.No.</strong></td>
<td width="212"><strong>Details</strong></td>
<td width="206"><strong>Total Cost in INR (inclusive of government fees/ charges and taxes)</strong></td>
<td width="150"><strong>Turn Around Time</strong></td><td width="156"><strong>Remarks</strong></td>
</tr>
<tr>
<td width="78">1.</td>
<td width="212">PAN Application</td>
<td width="206">599.00</td><td width="150">7 to 10 days</td>
<td width="156">All Inclusive</td>
</tr>
<tr>
<td width="78">2.</td>
<td width="212">GSTIN Application</td>
<td width="206">599.00</td>
<td width="150">7 to 10 days</td>
<td width="156">All Inclusive</td>
</tr>
<tr>
<td width="78">3.</td>
<td width="212">IEC Code Application</td>
<td width="206">1,199.00</td>
<td width="150">7 to 10 days</td>
<td width="156">All Inclusive</td>
</tr>
<tr>
<td width="78">4.</td>
<td width="212">Combo 1 (GSTIN & IEC)</td>
<td width="206">1,699.00</td>
<td width="150">7 to 10 days</td>
<td width="156">All Inclusive</td>
</tr>
<tr>
<td width="78">5.</td>
<td width="192">Combo 2 (GSTIN & PAN)</td>
<td width="206">1,099.00</td>
<td width="150">7 to 10 days</td>
<td width="156">All Inclusive</td>
</tr>
</tbody>
</table>
</div>
</div>
<div>
<p>NOTE: Set of required documents may vary as per the business type.</p>
<p><strong><em>Disclaimer: </em></strong><i>eBay is an intermediary and merely provides a marketplace platform that enables eBay users to offer, sell and buy the products. Please note that </i> Ismart Books LLP <i>is an independent service provider and engaged to advise or guide the sellers for obtaining various KYC documents. While </i>Ismart Books LLP<i> may provide its advice or guidance, such advice or guidance is solely informational and you may decide to follow it or not. eBay hasno control over and does not guarantee that</i> Ismart Books LLP’s <i>services will enable sellers to sell items. You shall not hold eBay or its Affiliates or their employees, officers and representatives, liable for use of services of</i> Ismart Books LLP.<i> You must not disclose any of your confidential or sensitive information in any manner whatsoever. eBay takes no responsibility and assumes no liability in any manner whatsoever, for any loss or damage arising from or relating to the services provided by</i> Ismart Books LLP<i> and availed by you, at your sole and absolute discretion, for your eBayselling accounts or otherwise.</i></p>
</div>
<div>
<div>
<h2>Who should register for IEC:</h2>
</div>
</div>
<div>
<div>
<ul>
<li>Everyone who wants to import or export goods for business purposes</li>
<li>Service provider serving clients abroad.</li>
<li>Also, applicable if you are importing a service depending upon if you are covered under reverse charge mechanism or not.</li>
<li>However, for services exports IEC shall be not be necessary except when the service provider is taking benefits under the Foreign Trade Policy.</li>
</ul>
</div>
</div>
<div>
<div>
<h2 >Benefits of IEC Registration</h2>
</div>
</div>
<div>
<div>
<ul>
<li>IEC forms the primary document for recognition by Government of India as an Exporter/Importer.</li>
<li>On the basis of IEC, companies can obtain various benefits on their exports/imports from the DGFT, Customs, Export Promotion Council etc.</li>
</ul>
</div>
</div>
<div>
<div>
<h2>Required Documents for IEC:</h2>
</div>
</div>
<div>
<div>
<ul>
<li>PAN card of Individual or business entity</li>
<li>Voter Id/ Aadhar card/ Passport of the Individual</li>
<li>Photo of the applicant</li>
<li>Bank certificate in the prescribed format ANF-2A(I) and a cancel cheque bearing pre-printed name of Individual or business entity</li>
<li>Certification of incorporation and Address proof in case of company</li>
<li>Copy of Rent Agreement or Electricity Bill Copy of the premise</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Div-9----Footer-->
<div id="div9">
<!-- Part-1 of footer -->
<div id="footer-p1">
<a href="/sellerUpdates.html">About eBay</a>
<a href="/page1.html">Start Selling</a>
<a href="/sellerUpdates.html">Seller Community</a>
<a href="https://sellglobal.ebay.in/seller-center/training-sessions/">Training sessions</a>
<a href="https://sellglobal.ebay.in/seller-center/faqs/">FAQ</a>
</div>
<!-- Part-2 of footer -->
<div id="footer-p2">
<!-- Facebook , Instagram and Linkedin href and logo adjustment -->
<div class="facebook">
<a href="https://www.facebook.com/ebaysellersindia" target="_blank">
<img width="30" height="30" src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/facebook-1.png" class="" alt="" >
</a>
</div>
<div class="instagram">
<a href="https://www.instagram.com/_mad___boxer_/" target="_blank">
<img width="30" height="30" src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/instagram-1.png" class="" alt="" >
</a>
</div>
<div class="linkedin">
<a href="https://www.linkedin.com/in/arshad-khan-350206154" target="_blank">
<img width="30" height="30" src="https://sellglobal.ebay.in/seller-center/wp-content/uploads/2021/11/linkedin-1.png" class="" alt="" >
</a>
</div>
</div>
<!-- Part-3 of footer -->
<div id="footer-p3">
<!-- links for User Agreement and all -->
<!-- © 2021 eBay Inc. User Agreement, User Privacy Notice, Cookies. -->
<a>© 2021 eBay Inc.</a>
<a id="last" href="https://www.ebay.in/pages/help/policies/user-agreement.html">User Agreement</a>
<a>,</a>
<a id="last" href="https://www.ebay.in/pages/help/policies/privacy-policy.html">User Privacy Notice</a>
<a>,</a>
<a id="last" href="https://www.ebay.in/pages/help/account/cookies-web-beacons.html">Cookies</a>
<a>.</a>
</div>
</div>
<!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE --><!-- DONE -->
</body>
</html>
<script src="/js/index.js"></script>