RazNT commited on
Commit
cceeecf
·
verified ·
1 Parent(s): 16e75d7

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +415 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ilitha Ftth Training
3
- emoji: 🔥
4
- colorFrom: gray
5
- colorTo: yellow
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: ilitha-ftth-training
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: green
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,415 @@
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>ILITHA FTTH Training - Ward 14, Mdantsane</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
9
+ <style>
10
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
12
+ }
13
+ .network-diagram {
14
+ transition: all 0.3s ease;
15
+ }
16
+ .network-diagram:hover {
17
+ transform: scale(1.02);
18
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
19
+ }
20
+ .tab-content {
21
+ display: none;
22
+ }
23
+ .tab-content.active {
24
+ display: block;
25
+ animation: fadeIn 0.5s;
26
+ }
27
+ @keyframes fadeIn {
28
+ from { opacity: 0; }
29
+ to { opacity: 1; }
30
+ }
31
+ .feature-card:hover {
32
+ transform: translateY(-5px);
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="font-sans bg-gray-50">
37
+ <!-- Header -->
38
+ <header class="gradient-bg text-white shadow-lg">
39
+ <div class="container mx-auto px-4 py-6">
40
+ <div class="flex flex-col md:flex-row justify-between items-center">
41
+ <div class="mb-4 md:mb-0">
42
+ <h1 class="text-2xl md:text-3xl font-bold">ILITHA FTTH Training</h1>
43
+ <p class="text-blue-100">Ward 14, Mdantsane</p>
44
+ </div>
45
+ <nav>
46
+ <ul class="flex space-x-4 font-medium">
47
+ <li><a href="#overview" class="hover:text-blue-100 transition">Overview</a></li>
48
+ <li><a href="#infrastructure" class="hover:text-blue-100 transition">Infrastructure</a></li>
49
+ <li><a href="#guide" class="hover:text-blue-100 transition">Guide</a></li>
50
+ </ul>
51
+ </nav>
52
+ </div>
53
+ </div>
54
+ </header>
55
+
56
+ <!-- Hero Section -->
57
+ <section class="gradient-bg text-white py-16">
58
+ <div class="container mx-auto px-4 text-center">
59
+ <h2 class="text-3xl md:text-5xl font-bold mb-6">Fibre Optic Internet in Ward 14</h2>
60
+ <p class="text-xl md:text-2xl max-w-3xl mx-auto mb-8">Fast, stable, and future-proof FTTH (Fibre-to-the-Home) technology</p>
61
+ <div class="flex flex-wrap justify-center gap-4">
62
+ <a href="#guide" class="bg-white text-blue-600 px-6 py-3 rounded-lg font-semibold hover:bg-blue-50 transition">Get Started</a>
63
+ <a href="#infrastructure" class="border border-white px-6 py-3 rounded-lg font-semibold hover:bg-white hover:text-blue-600 transition">View Infrastructure</a>
64
+ </div>
65
+ </div>
66
+ </section>
67
+
68
+ <!-- Main Content -->
69
+ <main class="container mx-auto px-4 py-12">
70
+ <!-- Overview Section -->
71
+ <section id="overview" class="mb-20">
72
+ <div class="text-center mb-12">
73
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Understanding Fibre Optic Networks</h2>
74
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">Think of fibre like a road system connecting your home to the internet superhighway</p>
75
+ </div>
76
+
77
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12">
78
+ <div class="bg-white p-6 rounded-xl shadow-md feature-card transition duration-300">
79
+ <div class="text-blue-500 mb-4">
80
+ <i class="fas fa-road text-4xl"></i>
81
+ </div>
82
+ <h3 class="text-xl font-semibold mb-3">Main Feeder Cable</h3>
83
+ <p class="text-gray-600">The highway of the network - carries large amounts of data over long distances</p>
84
+ </div>
85
+
86
+ <div class="bg-white p-6 rounded-xl shadow-md feature-card transition duration-300">
87
+ <div class="text-blue-500 mb-4">
88
+ <i class="fas fa-code-branch text-4xl"></i>
89
+ </div>
90
+ <h3 class="text-xl font-semibold mb-3">Distribution Routes</h3>
91
+ <p class="text-gray-600">The main roads - branch into neighborhoods to deliver data closer to homes</p>
92
+ </div>
93
+
94
+ <div class="bg-white p-6 rounded-xl shadow-md feature-card transition duration-300">
95
+ <div class="text-blue-500 mb-4">
96
+ <i class="fas fa-lightbulb text-4xl"></i>
97
+ </div>
98
+ <h3 class="text-xl font-semibold mb-3">Poles & Splitters</h3>
99
+ <p class="text-gray-600">Streetlights and intersections - carry fibre overhead and divide it into smaller lines</p>
100
+ </div>
101
+ </div>
102
+
103
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden network-diagram">
104
+ <div class="p-6 bg-blue-50 border-b border-gray-200">
105
+ <h3 class="text-xl font-semibold text-gray-800">FTTH Network Diagram</h3>
106
+ </div>
107
+ <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Passive_optical_network.svg/800px-Passive_optical_network.svg.png"
108
+ alt="FTTH Network Diagram"
109
+ class="w-full object-contain p-4">
110
+ </div>
111
+ </section>
112
+
113
+ <!-- Infrastructure Section -->
114
+ <section id="infrastructure" class="mb-20">
115
+ <h2 class="text-3xl font-bold text-gray-800 mb-8 text-center">Network Infrastructure Details</h2>
116
+
117
+ <div class="bg-gradient-to-r from-blue-500 to-cyan-500 rounded-xl p-1 mb-8">
118
+ <div class="bg-white rounded-lg p-6">
119
+ <h3 class="text-xl font-semibold mb-4 text-gray-800">Fibre Cable Specifications</h3>
120
+ <div class="grid grid-cols-2 md:grid-cols-3 gap-4">
121
+ <div class="bg-blue-50 p-4 rounded-lg">
122
+ <p class="text-sm text-blue-800 font-medium">Main Cable</p>
123
+ <p class="text-lg font-bold">1x 48F aerial fibre</p>
124
+ <p class="text-sm text-gray-600">2800 meters</p>
125
+ </div>
126
+ <div class="bg-blue-50 p-4 rounded-lg">
127
+ <p class="text-sm text-blue-800 font-medium">Distribution Cables</p>
128
+ <p class="text-lg font-bold">24F aerial cables</p>
129
+ <p class="text-sm text-gray-600">Multiple lengths (180-1150m)</p>
130
+ </div>
131
+ <div class="bg-blue-50 p-4 rounded-lg">
132
+ <p class="text-sm text-blue-800 font-medium">Splitter Ratio</p>
133
+ <p class="text-lg font-bold">1:8</p>
134
+ <p class="text-sm text-gray-600">1 cable serves 8 homes</p>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+
140
+ <h3 class="text-2xl font-semibold text-gray-800 mb-6">Aggregation Zones</h3>
141
+
142
+ <!-- Tabs Navigation -->
143
+ <div class="flex overflow-x-auto mb-6 pb-2">
144
+ <button onclick="openTab(event, 'ag36')" class="tab-button flex-shrink-0 px-4 py-2 mr-2 rounded-lg bg-blue-600 text-white font-medium">
145
+ AG36 Zone
146
+ </button>
147
+ <button onclick="openTab(event, 'ag45')" class="tab-button flex-shrink-0 px-4 py-2 rounded-lg bg-gray-200 text-gray-700 font-medium hover:bg-gray-300">
148
+ AG45 Zone
149
+ </button>
150
+ </div>
151
+
152
+ <!-- Tabs Content -->
153
+ <div id="ag36" class="tab-content active">
154
+ <div class="bg-white rounded-xl shadow-md overflow-hidden">
155
+ <div class="grid grid-cols-5 bg-gray-100 font-medium p-4">
156
+ <div>AG Zone</div>
157
+ <div>Joint</div>
158
+ <div>Distribution Cables</div>
159
+ <div>Poles</div>
160
+ <div>Notes</div>
161
+ </div>
162
+ <div class="grid grid-cols-5 p-4 border-b border-gray-200">
163
+ <div class="font-medium">AG36</div>
164
+ <div>Joint-36</div>
165
+ <div>3x cables (1230m each)</div>
166
+ <div>9</div>
167
+ <div>Serves P98–P99</div>
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <div id="ag45" class="tab-content">
173
+ <div class="bg-white rounded-xl shadow-md overflow-hidden">
174
+ <div class="grid grid-cols-5 bg-gray-100 font-medium p-4">
175
+ <div>AG Zone</div>
176
+ <div>Joint</div>
177
+ <div>Distribution Cables</div>
178
+ <div>Poles</div>
179
+ <div>Notes</div>
180
+ </div>
181
+ <div class="grid grid-cols-5 p-4 border-b border-gray-200">
182
+ <div class="font-medium">AG45</div>
183
+ <div>Joint-45</div>
184
+ <div>7x cables (60–660m)</div>
185
+ <div>14</div>
186
+ <div>Serves P122–P125</div>
187
+ </div>
188
+ </div>
189
+ </div>
190
+
191
+ <div class="mt-8 bg-white rounded-xl p-6 shadow-md">
192
+ <h3 class="text-xl font-semibold mb-4">Poles Distribution</h3>
193
+ <div class="flex items-center justify-center bg-gray-100 rounded-lg p-6">
194
+ <div class="text-center text-gray-500">
195
+ <i class="fas fa-chart-bar text-4xl mb-3"></i>
196
+ <p>Visual representation coming soon</p>
197
+ </div>
198
+ </div>
199
+ <p class="mt-4 text-gray-600">The diagram illustrates how fibre flows from the Feeder to Aggregation Zones (AG36–AG45), then to Poles, and finally into Homes.</p>
200
+ </div>
201
+ </section>
202
+
203
+ <!-- Guide Section -->
204
+ <section id="guide" class="mb-20">
205
+ <h2 class="text-3xl font-bold text-gray-800 mb-8 text-center">Team Guidelines</h2>
206
+
207
+ <div class="grid md:grid-cols-2 gap-8 mb-12">
208
+ <!-- Sales Team Card -->
209
+ <div class="bg-blue-50 rounded-xl p-6 shadow-md border-l-4 border-blue-500">
210
+ <div class="flex items-center mb-4">
211
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
212
+ <i class="fas fa-users text-blue-600 text-xl"></i>
213
+ </div>
214
+ <h3 class="text-xl font-semibold">Sales Teams</h3>
215
+ </div>
216
+ <ul class="space-y-3">
217
+ <li class="flex items-start">
218
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
219
+ <span>Confirm coverage in specific areas</span>
220
+ </li>
221
+ <li class="flex items-start">
222
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
223
+ <span>Explain that fibre is already in the street</span>
224
+ </li>
225
+ <li class="flex items-start">
226
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
227
+ <span>Highlight benefits of the available packages</span>
228
+ </li>
229
+ </ul>
230
+ </div>
231
+
232
+ <!-- Technicians Card -->
233
+ <div class="bg-green-50 rounded-xl p-6 shadow-md border-l-4 border-green-500">
234
+ <div class="flex items-center mb-4">
235
+ <div class="bg-green-100 p-3 rounded-full mr-4">
236
+ <i class="fas fa-tools text-green-600 text-xl"></i>
237
+ </div>
238
+ <h3 class="text-xl font-semibold">Technicians</h3>
239
+ </div>
240
+ <ul class="space-y-3">
241
+ <li class="flex items-start">
242
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
243
+ <span>Check the nearest pole to the customer</span>
244
+ </li>
245
+ <li class="flex items-start">
246
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
247
+ <span>Monitor splitter capacity (1:8 rule)</span>
248
+ </li>
249
+ <li class="flex items-start">
250
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
251
+ <span>Maintain joints and report issues</span>
252
+ </li>
253
+ </ul>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Troubleshooting Section -->
258
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden">
259
+ <div class="p-6 bg-gray-800 text-white">
260
+ <h3 class="text-xl font-semibold">Troubleshooting Guide</h3>
261
+ </div>
262
+ <div class="divide-y divide-gray-200">
263
+ <div class="p-6 hover:bg-gray-50 transition">
264
+ <div class="flex items-center">
265
+ <div class="bg-red-100 p-2 rounded-full mr-4">
266
+ <i class="fas fa-plug text-red-500"></i>
267
+ </div>
268
+ <h4 class="font-medium text-lg">No Connection</h4>
269
+ </div>
270
+ <p class="ml-14 mt-2 text-gray-600">Check DP on nearest pole → trace to Joint</p>
271
+ </div>
272
+ <div class="p-6 hover:bg-gray-50 transition">
273
+ <div class="flex items-center">
274
+ <div class="bg-yellow-100 p-2 rounded-full mr-4">
275
+ <i class="fas fa-tachometer-alt text-yellow-500"></i>
276
+ </div>
277
+ <h4 class="font-medium text-lg">Slow Speeds</h4>
278
+ </div>
279
+ <p class="ml-14 mt-2 text-gray-600">Check splitter load (1:8 ratio rule)</p>
280
+ </div>
281
+ <div class="p-6 hover:bg-gray-50 transition">
282
+ <div class="flex items-center">
283
+ <div class="bg-orange-100 p-2 rounded-full mr-4">
284
+ <i class="fas fa-cable-car text-orange-500"></i>
285
+ </div>
286
+ <h4 class="font-medium text-lg">Broken Cable</h4>
287
+ </div>
288
+ <p class="ml-14 mt-2 text-gray-600">Replace aerial fibre between poles</p>
289
+ </div>
290
+ <div class="p-6 hover:bg-gray-50 transition">
291
+ <div class="flex items-center">
292
+ <div class="bg-purple-100 p-2 rounded-full mr-4">
293
+ <i class="fas fa-bolt text-purple-500"></i>
294
+ </div>
295
+ <h4 class="font-medium text-lg">Power Issue</h4>
296
+ </div>
297
+ <p class="ml-14 mt-2 text-gray-600">Ensure ONT at customer premises has power</p>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </section>
302
+ </main>
303
+
304
+ <!-- FAQ Section -->
305
+ <section class="bg-gray-100 py-12">
306
+ <div class="container mx-auto px-4">
307
+ <h2 class="text-3xl font-bold text-center mb-8">Frequently Asked Questions</h2>
308
+
309
+ <div class="max-w-3xl mx-auto">
310
+ <div class="bg-white rounded-xl shadow-md mb-4 overflow-hidden">
311
+ <button onclick="toggleFAQ(1)" class="w-full text-left p-6 focus:outline-none flex justify-between items-center">
312
+ <span class="font-medium text-lg">What is the splitter ratio?</span>
313
+ <i class="fas fa-chevron-down transition-transform duration-300" id="faq-icon-1"></i>
314
+ </button>
315
+ <div id="faq-answer-1" class="px-6 pb-6 hidden text-gray-600">
316
+ The splitter ratio is 1:8, meaning one fibre cable can be split to serve up to 8 homes. This ensures optimal network performance while maximizing coverage.
317
+ </div>
318
+ </div>
319
+
320
+ <div class="bg-white rounded-xl shadow-md mb-4 overflow-hidden">
321
+ <button onclick="toggleFAQ(2)" class="w-full text-left p-6 focus:outline-none flex justify-between items-center">
322
+ <span class="font-medium text-lg">How long does installation take?</span>
323
+ <i class="fas fa-chevron-down transition-transform duration-300" id="faq-icon-2"></i>
324
+ </button>
325
+ <div id="faq-answer-2" class="px-6 pb-6 hidden text-gray-600">
326
+ Standard installations typically take 2-4 hours, depending on the distance from the nearest distribution point and the complexity of the home setup.
327
+ </div>
328
+ </div>
329
+
330
+ <div class="bg-white rounded-xl shadow-md overflow-hidden">
331
+ <button onclick="toggleFAQ(3)" class="w-full text-left p-6 focus:outline-none flex justify-between items-center">
332
+ <span class="font-medium text-lg">How do I check for service coverage?</span>
333
+ <i class="fas fa-chevron-down transition-transform duration-300" id="faq-icon-3"></i>
334
+ </button>
335
+ <div id="faq-answer-3" class="px-6 pb-6 hidden text-gray-600">
336
+ Contact our sales team with your exact address. They can check our network maps to confirm if fibre is available on your street and which pole would serve your home.
337
+ </div>
338
+ </div>
339
+ </div>
340
+ </div>
341
+ </section>
342
+
343
+ <!-- Footer -->
344
+ <footer class="bg-gray-800 text-white py-12">
345
+ <div class="container mx-auto px-4">
346
+ <div class="grid md:grid-cols-3 gap-8">
347
+ <div>
348
+ <h3 class="text-xl font-semibold mb-4">ILITHA FTTH</h3>
349
+ <p class="text-gray-400">Bringing high-speed fibre optic internet to Ward 14, Mdantsane through FTTH technology.</p>
350
+ </div>
351
+ <div>
352
+ <h3 class="text-xl font-semibold mb-4">Quick Links</h3>
353
+ <ul class="space-y-2">
354
+ <li><a href="#overview" class="text-gray-400 hover:text-white transition">Overview</a></li>
355
+ <li><a href="#infrastructure" class="text-gray-400 hover:text-white transition">Infrastructure</a></li>
356
+ <li><a href="#guide" class="text-gray-400 hover:text-white transition">Team Guide</a></li>
357
+ </ul>
358
+ </div>
359
+ <div>
360
+ <h3 class="text-xl font-semibold mb-4">Contact</h3>
361
+ <p class="text-gray-400 mb-2">Ward 14, Mdantsane</p>
362
+ <p class="text-gray-400">Eastern Cape, South Africa</p>
363
+ </div>
364
+ </div>
365
+ <div class="border-t border-gray-700 mt-8 pt-8 text-gray-400 text-center">
366
+ <p>&copy; 2025 ILITHA FTTH Training. All rights reserved</p>Designed by Raznet Solutions ([email protected])</p>
367
+ </div>
368
+ </div>
369
+ </footer>
370
+
371
+ <script>
372
+ // Tab functionality
373
+ function openTab(evt, tabName) {
374
+ const tabContents = document.getElementsByClassName("tab-content");
375
+ for (let i = 0; i < tabContents.length; i++) {
376
+ tabContents[i].classList.remove("active");
377
+ }
378
+
379
+ const tabButtons = document.getElementsByClassName("tab-button");
380
+ for (let i = 0; i < tabButtons.length; i++) {
381
+ tabButtons[i].classList.remove("bg-blue-600", "text-white");
382
+ tabButtons[i].classList.add("bg-gray-200", "text-gray-700");
383
+ }
384
+
385
+ document.getElementById(tabName).classList.add("active");
386
+ evt.currentTarget.classList.remove("bg-gray-200", "text-gray-700");
387
+ evt.currentTarget.classList.add("bg-blue-600", "text-white");
388
+ }
389
+
390
+ // FAQ toggle functionality
391
+ function toggleFAQ(num) {
392
+ const answer = document.getElementById(`faq-answer-${num}`);
393
+ const icon = document.getElementById(`faq-icon-${num}`);
394
+
395
+ if (answer.classList.contains('hidden')) {
396
+ answer.classList.remove('hidden');
397
+ icon.classList.add('transform', 'rotate-180');
398
+ } else {
399
+ answer.classList.add('hidden');
400
+ icon.classList.remove('transform', 'rotate-180');
401
+ }
402
+ }
403
+
404
+ // Smooth scrolling for anchor links
405
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
406
+ anchor.addEventListener('click', function (e) {
407
+ e.preventDefault();
408
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
409
+ behavior: 'smooth'
410
+ });
411
+ });
412
+ });
413
+ </script>
414
+ <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=RazNT/ilitha-ftth-training" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
415
+ </html>