-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
359 lines (318 loc) · 9.19 KB
/
index.html
File metadata and controls
359 lines (318 loc) · 9.19 KB
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
<script type="text/javascript">
var gk_isXlsx = false;
var gk_xlsxFileLookup = {};
var gk_fileData = {};
function filledCell(cell) {
return cell !== '' && cell != null;
}
function loadFileData(filename) {
if (gk_isXlsx && gk_xlsxFileLookup[filename]) {
try {
var workbook = XLSX.read(gk_fileData[filename], { type: 'base64' });
var firstSheetName = workbook.SheetNames[0];
var worksheet = workbook.Sheets[firstSheetName];
// Convert sheet to JSON to filter blank rows
var jsonData = XLSX.utils.sheet_to_json(worksheet, { header: 1, blankrows: false, defval: '' });
// Filter out blank rows (rows where all cells are empty, null, or undefined)
var filteredData = jsonData.filter(row => row.some(filledCell));
// Heuristic to find the header row by ignoring rows with fewer filled cells than the next row
var headerRowIndex = filteredData.findIndex((row, index) =>
row.filter(filledCell).length >= filteredData[index + 1]?.filter(filledCell).length
);
// Fallback
if (headerRowIndex === -1 || headerRowIndex > 25) {
headerRowIndex = 0;
}
// Convert filtered JSON back to CSV
var csv = XLSX.utils.aoa_to_sheet(filteredData.slice(headerRowIndex)); // Create a new sheet from filtered array of arrays
csv = XLSX.utils.sheet_to_csv(csv, { header: 1 });
return csv;
} catch (e) {
console.error(e);
return "";
}
}
return gk_fileData[filename] || "";
}
</script><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Unlock exclusive discounts on SellerSprite with affiliate codes Duncan57 and DUCN35. Save up to 81% on Amazon seller tools!">
<title>SellerSprite Affiliate Discounts</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
line-height: 1.6;
color: #333;
}
/* Hero Section */
.hero {
background-color: #1e6b6b;
color: white;
text-align: center;
padding: 4rem 2rem;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 1.5rem;
}
.hero a {
display: inline-block;
background-color: white;
color: #1e6b6b;
padding: 0.75rem 1.5rem;
text-decoration: none;
font-weight: bold;
border-radius: 0.5rem;
transition: background-color 0.3s;
}
.hero a:hover {
background-color: #f0f0f0;
}
/* Discounts Section */
.discounts {
padding: 3rem 2rem;
background-color: #f9f9f9;
}
.discounts h2 {
text-align: center;
font-size: 2rem;
margin-bottom: 2rem;
}
.discount-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}
.discount-card {
background-color: white;
padding: 1.5rem;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
}
.discount-card h3 {
font-size: 1.5rem;
color: #1e6b6b;
margin-bottom: 1rem;
}
.discount-card ul {
list-style: none;
text-align: left;
}
.discount-card li {
margin-bottom: 0.5rem;
}
/* How to Use Section */
.how-to-use {
padding: 3rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.how-to-use h2 {
text-align: center;
font-size: 2rem;
margin-bottom: 2rem;
}
.step {
display: flex;
align-items: flex-start;
margin-bottom: 1.5rem;
}
.step-number {
background-color: #1e6b6b;
color: white;
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 1rem;
font-weight: bold;
}
.step-content h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
.step-content a {
color: #1e6b6b;
text-decoration: underline;
}
/* Why SellerSprite Section */
.why-sellersprite {
padding: 3rem 2rem;
background-color: #e6f0f0;
}
.why-sellersprite h2 {
text-align: center;
font-size: 2rem;
margin-bottom: 2rem;
}
.why-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}
.why-card {
background-color: white;
padding: 1.5rem;
border-radius: 0.5rem;
text-align: center;
}
.why-card h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
/* FAQ Section */
.faq {
padding: 3rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.faq h2 {
text-align: center;
font-size: 2rem;
margin-bottom: 2rem;
}
.faq-item {
margin-bottom: 1rem;
}
.faq-item h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
/* Footer */
footer {
background-color: #1e6b6b;
color: white;
text-align: center;
padding: 2rem;
}
footer a {
color: #b3e0e0;
text-decoration: underline;
}
/* Responsive Design */
@media (min-width: 768px) {
.hero h1 {
font-size: 3.5rem;
}
.discount-grid,
.why-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1024px) {
.why-grid {
grid-template-columns: repeat(3, 1fr);
}
}
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<h1>Unlock Huge Savings on SellerSprite!</h1>
<p>Use exclusive affiliate codes <strong>Duncan57</strong> and <strong>DUCN35</strong> to save up to 81% on Amazon seller tools.</p>
<a href="https://www.sellersprite.com/price" target="_blank" rel="noopener noreferrer">Get Started Now</a>
</section>
<!-- Discounts Section -->
<section class="discounts">
<h2>Exclusive Affiliate Discounts</h2>
<div class="discount-grid">
<div class="discount-card">
<h3>Duncan57</h3>
<ul>
<li>81% off first month: $98 → $19</li>
<li>57% off Annual Basic Plan: $468 → $199</li>
</ul>
</div>
<div class="discount-card">
<h3>DUCN35</h3>
<ul>
<li>35% off Annual Standard, Advanced, and VIP Plans</li>
</ul>
</div>
</div>
</section>
<!-- How to Use Section -->
<section class="how-to-use">
<h2>How to Use Your Discount</h2>
<div class="step">
<div class="step-number">1</div>
<div class="step-content">
<h3>Step 1</h3>
<p>Visit <a href="https://www.sellersprite.com/price" target="_blank" rel="noopener noreferrer">SellerSprite’s pricing page</a> and select Monthly or Annual plan.</p>
</div>
</div>
<div class="step">
<div class="step-number">2</div>
<div class="step-content">
<h3>Step 2</h3>
<p>Choose PayPal or Stripe, enter <strong>Duncan57</strong> or <strong>DUCN35</strong> in the Coupon code box, and verify.</p>
</div>
</div>
<div class="step">
<div class="step-number">3</div>
<div class="step-content">
<h3>Step 3</h3>
<p>Check the discounted price, submit your order, and complete payment.</p>
</div>
</div>
</section>
<!-- Why SellerSprite Section -->
<section class="why-sellersprite">
<h2>Why Choose SellerSprite?</h2>
<div class="why-grid">
<div class="why-card">
<h3>Boost Sales</h3>
<p>Find high-demand products and optimize listings.</p>
</div>
<div class="why-card">
<h3>Save Time</h3>
<p>Automate keyword research and competitor analysis.</p>
</div>
<div class="why-card">
<h3>Grow Smarter</h3>
<p>Leverage data-driven insights for Amazon success.</p>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="faq">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<h3>How do I apply the discount code?</h3>
<p>Enter <strong>Duncan57</strong> or <strong>DUCN35</strong> in the Coupon code box on the SellerSprite pricing page and verify before paying.</p>
</div>
<div class="faq-item">
<h3>Can I use both codes together?</h3>
<p>No, only one discount code can be applied per purchase.</p>
</div>
<div class="faq-item">
<h3>Is the discount valid for all plans?</h3>
<p>Duncan57 applies to the first month and Annual Basic Plan. DUCN35 applies to Annual Standard, Advanced, and VIP Plans.</p>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2025 SellerSprite Affiliate Program. <a href="https://www.sellersprite.com" target="_blank" rel="noopener noreferrer">Visit SellerSprite</a> | Affiliate Disclosure</p>
</footer>
</body>
</html>