Miles6048 commited on
Commit
06235d0
·
verified ·
1 Parent(s): eea9b4a

Add Ghana to the server - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +426 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Miles
3
- emoji: 📚
4
- colorFrom: pink
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: miles
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,426 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>miles vpn - Fast & Private VPN Service</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .vpn-gradient {
11
+ background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
12
+ }
13
+ .server-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
16
+ }
17
+ .connection-animation {
18
+ animation: pulse 2s infinite;
19
+ }
20
+ @keyframes pulse {
21
+ 0% { opacity: 0.7; }
22
+ 50% { opacity: 1; }
23
+ 100% { opacity: 0.7; }
24
+ }
25
+ .toggle-switch {
26
+ position: relative;
27
+ display: inline-block;
28
+ width: 60px;
29
+ height: 34px;
30
+ }
31
+ .toggle-switch input {
32
+ opacity: 0;
33
+ width: 0;
34
+ height: 0;
35
+ }
36
+ .slider {
37
+ position: absolute;
38
+ cursor: pointer;
39
+ top: 0;
40
+ left: 0;
41
+ right: 0;
42
+ bottom: 0;
43
+ background-color: #ccc;
44
+ transition: .4s;
45
+ border-radius: 34px;
46
+ }
47
+ .slider:before {
48
+ position: absolute;
49
+ content: "";
50
+ height: 26px;
51
+ width: 26px;
52
+ left: 4px;
53
+ bottom: 4px;
54
+ background-color: white;
55
+ transition: .4s;
56
+ border-radius: 50%;
57
+ }
58
+ input:checked + .slider {
59
+ background-color: #4f46e5;
60
+ }
61
+ input:checked + .slider:before {
62
+ transform: translateX(26px);
63
+ }
64
+ </style>
65
+ </head>
66
+ <body class="bg-gray-50 font-sans">
67
+ <div class="min-h-screen flex flex-col">
68
+ <!-- Header -->
69
+ <header class="vpn-gradient text-white p-4 shadow-lg">
70
+ <div class="container mx-auto flex justify-between items-center">
71
+ <div class="flex items-center space-x-2">
72
+ <i class="fas fa-shield-alt text-2xl"></i>
73
+ <h1 class="text-xl font-bold">miles vpn</h1>
74
+ </div>
75
+ <nav class="hidden md:flex space-x-6">
76
+ <a href="#" class="hover:text-gray-200">Home</a>
77
+ <a href="#" class="hover:text-gray-200">Features</a>
78
+ <a href="#" class="hover:text-gray-200">Pricing</a>
79
+ <a href="#" class="hover:text-gray-200">Support</a>
80
+ </nav>
81
+ <div class="flex items-center space-x-4">
82
+ <button class="hidden md:block px-4 py-2 rounded-lg bg-white text-indigo-600 font-medium hover:bg-gray-100 transition">Sign In</button>
83
+ <button class="md:hidden text-2xl" id="menu-toggle">
84
+ <i class="fas fa-bars"></i>
85
+ </button>
86
+ </div>
87
+ </div>
88
+ </header>
89
+
90
+ <!-- Mobile Menu -->
91
+ <div id="mobile-menu" class="hidden bg-white shadow-lg absolute w-full z-10">
92
+ <div class="flex flex-col p-4 space-y-3">
93
+ <a href="#" class="py-2 px-4 hover:bg-gray-100 rounded">Home</a>
94
+ <a href="#" class="py-2 px-4 hover:bg-gray-100 rounded">Features</a>
95
+ <a href="#" class="py-2 px-4 hover:bg-gray-100 rounded">Pricing</a>
96
+ <a href="#" class="py-2 px-4 hover:bg-gray-100 rounded">Support</a>
97
+ <button class="w-full py-2 px-4 bg-indigo-600 text-white rounded-lg font-medium hover:bg-indigo-700 transition">Sign In</button>
98
+ </div>
99
+ </div>
100
+
101
+ <!-- Main Content -->
102
+ <main class="flex-grow container mx-auto px-4 py-8">
103
+ <!-- Connection Status Card -->
104
+ <div class="max-w-3xl mx-auto bg-white rounded-xl shadow-md overflow-hidden mb-8">
105
+ <div class="p-6">
106
+ <div class="flex flex-col items-center">
107
+ <div class="relative mb-6">
108
+ <div class="w-48 h-48 rounded-full border-8 border-gray-200 flex items-center justify-center">
109
+ <div id="connection-circle" class="w-40 h-40 rounded-full bg-gray-100 flex items-center justify-center cursor-pointer transition-all duration-300 hover:shadow-lg">
110
+ <div id="connection-status" class="text-center">
111
+ <i class="fas fa-power-off text-5xl text-gray-400"></i>
112
+ <p class="mt-2 font-semibold text-gray-600">Disconnected</p>
113
+ </div>
114
+ </div>
115
+ </div>
116
+ <div id="connection-animation" class="absolute inset-0 rounded-full border-8 border-transparent hidden"></div>
117
+ </div>
118
+
119
+ <div class="w-full max-w-md">
120
+ <div class="flex justify-between items-center mb-4">
121
+ <span class="text-gray-700">Auto Connect</span>
122
+ <label class="toggle-switch">
123
+ <input type="checkbox" id="auto-connect">
124
+ <span class="slider"></span>
125
+ </label>
126
+ </div>
127
+ <div class="flex justify-between items-center mb-6">
128
+ <span class="text-gray-700">Kill Switch</span>
129
+ <label class="toggle-switch">
130
+ <input type="checkbox" id="kill-switch">
131
+ <span class="slider"></span>
132
+ </label>
133
+ </div>
134
+
135
+ <button id="connect-btn" class="w-full py-3 px-6 bg-indigo-600 text-white rounded-lg font-bold text-lg hover:bg-indigo-700 transition">Connect</button>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </div>
140
+
141
+ <!-- Stats Section -->
142
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
143
+ <div class="bg-white p-6 rounded-xl shadow">
144
+ <div class="flex items-center space-x-4">
145
+ <div class="p-3 bg-indigo-100 rounded-full">
146
+ <i class="fas fa-globe text-indigo-600 text-xl"></i>
147
+ </div>
148
+ <div>
149
+ <p class="text-gray-500">Server Location</p>
150
+ <h3 id="server-location" class="text-xl font-semibold">Not Connected</h3>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ <div class="bg-white p-6 rounded-xl shadow">
155
+ <div class="flex items-center space-x-4">
156
+ <div class="p-3 bg-green-100 rounded-full">
157
+ <i class="fas fa-tachometer-alt text-green-600 text-xl"></i>
158
+ </div>
159
+ <div>
160
+ <p class="text-gray-500">Download Speed</p>
161
+ <h3 id="download-speed" class="text-xl font-semibold">0 Mbps</h3>
162
+ </div>
163
+ </div>
164
+ </div>
165
+ <div class="bg-white p-6 rounded-xl shadow">
166
+ <div class="flex items-center space-x-4">
167
+ <div class="p-3 bg-blue-100 rounded-full">
168
+ <i class="fas fa-shield-alt text-blue-600 text-xl"></i>
169
+ </div>
170
+ <div>
171
+ <p class="text-gray-500">Security</p>
172
+ <h3 id="security-level" class="text-xl font-semibold">AES-256</h3>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Server Locations -->
179
+ <h2 class="text-2xl font-bold mb-4 text-gray-800">Recommended Servers</h2>
180
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
181
+ <div class="server-card bg-white p-6 rounded-xl shadow transition duration-300 cursor-pointer" data-location="Ghana">
182
+ <div class="flex items-center space-x-3 mb-3">
183
+ <img src="https://flagcdn.com/w20/gh.png" alt="Ghana Flag" class="w-6 h-4">
184
+ <h3 class="font-semibold">Ghana</h3>
185
+ </div>
186
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
187
+ <span>Load</span>
188
+ <span class="text-green-500">Low</span>
189
+ </div>
190
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
191
+ <span>Ping</span>
192
+ <span>65ms</span>
193
+ </div>
194
+ <div class="flex justify-between text-sm text-gray-500">
195
+ <span>Speed</span>
196
+ <span>900 Mbps</span>
197
+ </div>
198
+ </div>
199
+ <div class="server-card bg-white p-6 rounded-xl shadow transition duration-300 cursor-pointer" data-location="United States">
200
+ <div class="flex items-center space-x-3 mb-3">
201
+ <img src="https://flagcdn.com/w20/us.png" alt="US Flag" class="w-6 h-4">
202
+ <h3 class="font-semibold">United States</h3>
203
+ </div>
204
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
205
+ <span>Load</span>
206
+ <span class="text-green-500">Low</span>
207
+ </div>
208
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
209
+ <span>Ping</span>
210
+ <span>32ms</span>
211
+ </div>
212
+ <div class="flex justify-between text-sm text-gray-500">
213
+ <span>Speed</span>
214
+ <span>1.2 Gbps</span>
215
+ </div>
216
+ </div>
217
+ <div class="server-card bg-white p-6 rounded-xl shadow transition duration-300 cursor-pointer" data-location="United Kingdom">
218
+ <div class="flex items-center space-x-3 mb-3">
219
+ <img src="https://flagcdn.com/w20/gb.png" alt="UK Flag" class="w-6 h-4">
220
+ <h3 class="font-semibold">United Kingdom</h3>
221
+ </div>
222
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
223
+ <span>Load</span>
224
+ <span class="text-yellow-500">Medium</span>
225
+ </div>
226
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
227
+ <span>Ping</span>
228
+ <span>45ms</span>
229
+ </div>
230
+ <div class="flex justify-between text-sm text-gray-500">
231
+ <span>Speed</span>
232
+ <span>950 Mbps</span>
233
+ </div>
234
+ </div>
235
+ <div class="server-card bg-white p-6 rounded-xl shadow transition duration-300 cursor-pointer" data-location="Japan">
236
+ <div class="flex items-center space-x-3 mb-3">
237
+ <img src="https://flagcdn.com/w20/jp.png" alt="Japan Flag" class="w-6 h-4">
238
+ <h3 class="font-semibold">Japan</h3>
239
+ </div>
240
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
241
+ <span>Load</span>
242
+ <span class="text-green-500">Low</span>
243
+ </div>
244
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
245
+ <span>Ping</span>
246
+ <span>112ms</span>
247
+ </div>
248
+ <div class="flex justify-between text-sm text-gray-500">
249
+ <span>Speed</span>
250
+ <span>1.1 Gbps</span>
251
+ </div>
252
+ </div>
253
+ <div class="server-card bg-white p-6 rounded-xl shadow transition duration-300 cursor-pointer" data-location="Germany">
254
+ <div class="flex items-center space-x-3 mb-3">
255
+ <img src="https://flagcdn.com/w20/de.png" alt="Germany Flag" class="w-6 h-4">
256
+ <h3 class="font-semibold">Germany</h3>
257
+ </div>
258
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
259
+ <span>Load</span>
260
+ <span class="text-red-500">High</span>
261
+ </div>
262
+ <div class="flex justify-between text-sm text-gray-500 mb-2">
263
+ <span>Ping</span>
264
+ <span>52ms</span>
265
+ </div>
266
+ <div class="flex justify-between text-sm text-gray-500">
267
+ <span>Speed</span>
268
+ <span>800 Mbps</span>
269
+ </div>
270
+ </div>
271
+ </div>
272
+
273
+ <!-- Features Section -->
274
+ <h2 class="text-2xl font-bold mb-4 text-gray-800">Why Choose miles vpn?</h2>
275
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
276
+ <div class="bg-white p-6 rounded-xl shadow">
277
+ <div class="text-indigo-600 mb-4">
278
+ <i class="fas fa-lock text-3xl"></i>
279
+ </div>
280
+ <h3 class="text-xl font-semibold mb-2">Military-Grade Encryption</h3>
281
+ <p class="text-gray-600">Protect your online activities with AES-256 encryption, the same standard used by governments and security experts.</p>
282
+ </div>
283
+ <div class="bg-white p-6 rounded-xl shadow">
284
+ <div class="text-indigo-600 mb-4">
285
+ <i class="fas fa-bolt text-3xl"></i>
286
+ </div>
287
+ <h3 class="text-xl font-semibold mb-2">Ultra-Fast Speeds</h3>
288
+ <p class="text-gray-600">Our global network of high-speed servers ensures buffer-free streaming and lag-free gaming.</p>
289
+ </div>
290
+ <div class="bg-white p-6 rounded-xl shadow">
291
+ <div class="text-indigo-600 mb-4">
292
+ <i class="fas fa-user-shield text-3xl"></i>
293
+ </div>
294
+ <h3 class="text-xl font-semibold mb-2">No Logs Policy</h3>
295
+ <p class="text-gray-600">We never track, collect, or share your private data. Your online activity stays private.</p>
296
+ </div>
297
+ </div>
298
+ </main>
299
+
300
+ <!-- Footer -->
301
+ <footer class="bg-gray-800 text-white py-8">
302
+ <div class="container mx-auto px-4">
303
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
304
+ <div>
305
+ <h3 class="text-xl font-bold mb-4">miles vpn</h3>
306
+ <p class="text-gray-400">The fastest and most secure VPN service to protect your online privacy.</p>
307
+ </div>
308
+ <div>
309
+ <h4 class="font-semibold mb-4">Product</h4>
310
+ <ul class="space-y-2">
311
+ <li><a href="#" class="text-gray-400 hover:text-white">Features</a></li>
312
+ <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
313
+ <li><a href="#" class="text-gray-400 hover:text-white">Apps</a></li>
314
+ <li><a href="#" class="text-gray-400 hover:text-white">Server Locations</a></li>
315
+ </ul>
316
+ </div>
317
+ <div>
318
+ <h4 class="font-semibold mb-4">Support</h4>
319
+ <ul class="space-y-2">
320
+ <li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li>
321
+ <li><a href="#" class="text-gray-400 hover:text-white">Tutorials</a></li>
322
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact Us</a></li>
323
+ <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
324
+ </ul>
325
+ </div>
326
+ <div>
327
+ <h4 class="font-semibold mb-4">Legal</h4>
328
+ <ul class="space-y-2">
329
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
330
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
331
+ <li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li>
332
+ </ul>
333
+ </div>
334
+ </div>
335
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
336
+ <p>© 2023 miles vpn. All rights reserved.</p>
337
+ </div>
338
+ </div>
339
+ </footer>
340
+ </div>
341
+
342
+ <script>
343
+ // Mobile menu toggle
344
+ document.getElementById('menu-toggle').addEventListener('click', function() {
345
+ const menu = document.getElementById('mobile-menu');
346
+ menu.classList.toggle('hidden');
347
+ });
348
+
349
+ // VPN connection simulation
350
+ const connectBtn = document.getElementById('connect-btn');
351
+ const connectionStatus = document.getElementById('connection-status');
352
+ const connectionCircle = document.getElementById('connection-circle');
353
+ const connectionAnimation = document.getElementById('connection-animation');
354
+ const serverLocation = document.getElementById('server-location');
355
+ const downloadSpeed = document.getElementById('download-speed');
356
+ let isConnected = false;
357
+ let currentLocation = '';
358
+
359
+ // Server selection
360
+ const serverCards = document.querySelectorAll('.server-card');
361
+ serverCards.forEach(card => {
362
+ card.addEventListener('click', function() {
363
+ serverCards.forEach(c => c.classList.remove('ring-2', 'ring-indigo-500'));
364
+ this.classList.add('ring-2', 'ring-indigo-500');
365
+ currentLocation = this.getAttribute('data-location');
366
+
367
+ if (isConnected) {
368
+ serverLocation.textContent = currentLocation;
369
+ }
370
+ });
371
+ });
372
+
373
+ // Connect button functionality
374
+ connectBtn.addEventListener('click', function() {
375
+ if (!currentLocation && !isConnected) {
376
+ alert('Please select a server location first');
377
+ return;
378
+ }
379
+
380
+ isConnected = !isConnected;
381
+
382
+ if (isConnected) {
383
+ // Connecting animation
384
+ connectionCircle.classList.remove('bg-gray-100');
385
+ connectionCircle.classList.add('bg-indigo-100');
386
+ connectionStatus.innerHTML = '<i class="fas fa-circle-notch fa-spin text-5xl text-indigo-600"></i><p class="mt-2 font-semibold text-indigo-600">Connecting...</p>';
387
+
388
+ // Simulate connection delay
389
+ setTimeout(() => {
390
+ connectionStatus.innerHTML = '<i class="fas fa-check-circle text-5xl text-green-500"></i><p class="mt-2 font-semibold text-green-600">Connected</p>';
391
+ connectionAnimation.classList.remove('hidden');
392
+ connectionAnimation.classList.add('connection-animation');
393
+ connectionAnimation.style.borderColor = 'rgba(79, 70, 229, 0.5)';
394
+ connectBtn.textContent = 'Disconnect';
395
+ connectBtn.classList.remove('bg-indigo-600', 'hover:bg-indigo-700');
396
+ connectBtn.classList.add('bg-red-600', 'hover:bg-red-700');
397
+
398
+ // Update stats
399
+ serverLocation.textContent = currentLocation || 'United States';
400
+ downloadSpeed.textContent = (Math.random() * 100 + 50).toFixed(2) + ' Mbps';
401
+ }, 2000);
402
+ } else {
403
+ // Disconnecting
404
+ connectionCircle.classList.remove('bg-indigo-100');
405
+ connectionCircle.classList.add('bg-gray-100');
406
+ connectionStatus.innerHTML = '<i class="fas fa-power-off text-5xl text-gray-400"></i><p class="mt-2 font-semibold text-gray-600">Disconnected</p>';
407
+ connectionAnimation.classList.add('hidden');
408
+ connectBtn.textContent = 'Connect';
409
+ connectBtn.classList.remove('bg-red-600', 'hover:bg-red-700');
410
+ connectBtn.classList.add('bg-indigo-600', 'hover:bg-indigo-700');
411
+
412
+ // Reset stats
413
+ serverLocation.textContent = 'Not Connected';
414
+ downloadSpeed.textContent = '0 Mbps';
415
+ }
416
+ });
417
+
418
+ // Simulate speed changes when connected
419
+ setInterval(() => {
420
+ if (isConnected) {
421
+ downloadSpeed.textContent = (Math.random() * 50 + 50).toFixed(2) + ' Mbps';
422
+ }
423
+ }, 3000);
424
+ </script>
425
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Miles6048/miles" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
426
+ </html>