-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathweb\download.html
More file actions
235 lines (211 loc) · 6.63 KB
/
Copy pathweb\download.html
File metadata and controls
235 lines (211 loc) · 6.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TikTok Profile Archiver - Purchase</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
:root {
--primary-dark: #121212;
--secondary-dark: #1f1f1f;
--tiktok-red: #FE2C55;
--tiktok-red-hover: #e62548;
--text-white: #ffffff;
--text-gray: #8a8a8a;
}
body {
background: var(--primary-dark);
color: var(--text-white);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}
.navbar {
background: var(--secondary-dark);
padding: 1rem 2rem;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.logo {
display: flex;
align-items: center;
gap: 1rem;
font-size: 1.5rem;
color: var(--tiktok-red);
font-weight: bold;
}
.logo i {
font-size: 1.8rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
.hero {
text-align: center;
padding: 4rem 0;
position: relative;
overflow: hidden;
}
.hero::before {
content: '♪';
position: absolute;
font-size: 15rem;
color: rgba(254, 44, 85, 0.05);
top: -2rem;
left: -2rem;
transform: rotate(-45deg);
}
.hero::after {
content: '♫';
position: absolute;
font-size: 12rem;
color: rgba(254, 44, 85, 0.05);
bottom: -2rem;
right: -2rem;
transform: rotate(45deg);
}
.hero h1 {
color: var(--tiktok-red);
font-size: 3rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero p {
color: var(--text-gray);
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto;
}
.features {
background: var(--secondary-dark);
border-radius: 16px;
padding: 2rem;
margin: 2rem 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.features h2 {
color: var(--text-white);
margin-bottom: 1.5rem;
font-size: 2rem;
text-align: center;
}
.feature-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
padding: 0;
list-style: none;
}
.feature-list li {
background: rgba(254, 44, 85, 0.1);
padding: 1.5rem;
border-radius: 12px;
display: flex;
align-items: center;
gap: 1rem;
transition: transform 0.3s ease;
}
.feature-list li:hover {
transform: translateY(-5px);
}
.feature-list li i {
color: var(--tiktok-red);
font-size: 1.5rem;
}
.pricing {
background: var(--secondary-dark);
border-radius: 16px;
padding: 3rem 2rem;
text-align: center;
margin: 2rem 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.price {
font-size: 4rem;
color: var(--tiktok-red);
margin: 1rem 0;
font-weight: bold;
}
.price-subtitle {
color: var(--text-gray);
margin-bottom: 2rem;
}
.btn {
background: var(--tiktok-red);
color: var(--text-white);
padding: 1rem 2.5rem;
border: none;
border-radius: 8px;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
}
.btn:hover {
background: var(--tiktok-red-hover);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(254, 44, 85, 0.3);
}
</style>
</head>
<body>
<nav class="navbar">
<a href="https://sites.google.com/view/tiktok-backup" class="logo">
<i class="fas fa-music"></i>
TikTok Profile Archiver
</a>
</nav>
<div class="container">
<div class="hero">
<h1>Archive Your TikTok Content</h1>
<p>Professional backup solution for TikTok creators and enthusiasts</p>
</div>
<div class="features">
<h2>Premium Features</h2>
<ul class="feature-list">
<li>
<i class="fas fa-download"></i>
<span>Bulk Profile Downloads</span>
</li>
<li>
<i class="fas fa-folder-tree"></i>
<span>Organized Directory Structure</span>
</li>
<li>
<i class="fas fa-clock"></i>
<span>Automated Scheduling</span>
</li>
<li>
<i class="fas fa-chart-line"></i>
<span>Profile Analytics</span>
</li>
<li>
<i class="fas fa-shield-alt"></i>
<span>Secure Local Storage</span>
</li>
<li>
<i class="fas fa-headset"></i>
<span>24/7 Support Access</span>
</li>
</ul>
</div>
<div class="pricing">
<h2>One-Time Purchase</h2>
<div class="price">$49.99</div>
<p class="price-subtitle">Lifetime access with free updates</p>
<a href="https://shoppy.gg/@aquax.services" class="btn">
<i class="fas fa-shopping-cart"></i>
Purchase Now
</a>
</div>
</div>
</body>
</html>