gg9909 commited on
Commit
0633f73
Β·
verified Β·
1 Parent(s): 660c6c3

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +425 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Test
3
- emoji: 🌍
4
- colorFrom: red
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: test
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: blue
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,425 @@
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>The Truth They Don't Want You To See</title>
7
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
8
+ <style>
9
+ :root {
10
+ --red-alert: #ff0033;
11
+ --dark-bg: #121212;
12
+ --neon-glow: 0 0 10px rgba(0, 255, 255, 0.8);
13
+ --text-glow: 0 0 5px rgba(0, 255, 255, 0.5);
14
+ }
15
+
16
+ body {
17
+ font-family: 'Courier New', monospace;
18
+ background-color: var(--dark-bg);
19
+ color: cyan;
20
+ margin: 0;
21
+ padding: 0;
22
+ background-image:
23
+ radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 20%),
24
+ radial-gradient(circle at 90% 80%, rgba(255, 0, 51, 0.1) 0%, transparent 20%);
25
+ overflow-x: hidden;
26
+ }
27
+
28
+ .container {
29
+ max-width: 900px;
30
+ margin: 0 auto;
31
+ padding: 20px;
32
+ position: relative;
33
+ }
34
+
35
+ header {
36
+ text-align: center;
37
+ padding: 30px 0;
38
+ border-bottom: 1px dashed var(--red-alert);
39
+ margin-bottom: 40px;
40
+ position: relative;
41
+ }
42
+
43
+ h1 {
44
+ font-size: 2.5rem;
45
+ text-shadow: var(--text-glow);
46
+ letter-spacing: 3px;
47
+ animation: pulse 2s infinite alternate;
48
+ }
49
+
50
+ .eye-icon {
51
+ position: absolute;
52
+ top: 20px;
53
+ right: 20px;
54
+ font-size: 2rem;
55
+ color: var(--red-alert);
56
+ animation: blink 5s infinite;
57
+ }
58
+
59
+ .conspiracy-card {
60
+ background: rgba(18, 18, 18, 0.8);
61
+ border: 1px solid cyan;
62
+ border-radius: 5px;
63
+ padding: 20px;
64
+ margin-bottom: 30px;
65
+ box-shadow: var(--neon-glow);
66
+ transition: all 0.3s ease;
67
+ position: relative;
68
+ overflow: hidden;
69
+ }
70
+
71
+ .conspiracy-card:hover {
72
+ transform: translateY(-5px);
73
+ box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
74
+ }
75
+
76
+ .conspiracy-card h2 {
77
+ color: var(--red-alert);
78
+ margin-top: 0;
79
+ text-shadow: var(--text-glow);
80
+ }
81
+
82
+ .classified {
83
+ position: absolute;
84
+ top: 10px;
85
+ right: 10px;
86
+ background: black;
87
+ color: red;
88
+ padding: 3px 8px;
89
+ font-size: 0.8rem;
90
+ border: 1px solid red;
91
+ transform: rotate(15deg);
92
+ }
93
+
94
+ .redacted {
95
+ background-color: black;
96
+ color: black;
97
+ padding: 0 5px;
98
+ border-radius: 3px;
99
+ position: relative;
100
+ }
101
+
102
+ .redacted:hover {
103
+ color: white;
104
+ background-color: var(--red-alert);
105
+ }
106
+
107
+ .evidence-grid {
108
+ display: grid;
109
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
110
+ gap: 20px;
111
+ margin: 30px 0;
112
+ }
113
+
114
+ .evidence-item {
115
+ border: 1px dotted cyan;
116
+ padding: 15px;
117
+ text-align: center;
118
+ cursor: pointer;
119
+ transition: all 0.3s ease;
120
+ }
121
+
122
+ .evidence-item:hover {
123
+ background: rgba(0, 255, 255, 0.1);
124
+ transform: scale(1.05);
125
+ }
126
+
127
+ .evidence-item i {
128
+ font-size: 2rem;
129
+ margin-bottom: 10px;
130
+ color: var(--red-alert);
131
+ }
132
+
133
+ .reveal-btn {
134
+ background: transparent;
135
+ border: 1px solid cyan;
136
+ color: cyan;
137
+ padding: 10px 20px;
138
+ font-family: inherit;
139
+ cursor: pointer;
140
+ margin: 20px 0;
141
+ transition: all 0.3s ease;
142
+ text-transform: uppercase;
143
+ letter-spacing: 1px;
144
+ }
145
+
146
+ .reveal-btn:hover {
147
+ background: cyan;
148
+ color: black;
149
+ box-shadow: var(--neon-glow);
150
+ }
151
+
152
+ .hidden-truth {
153
+ max-height: 0;
154
+ overflow: hidden;
155
+ transition: max-height 0.5s ease;
156
+ background: rgba(0, 0, 0, 0.5);
157
+ margin: 10px 0;
158
+ padding: 0 15px;
159
+ border-left: 3px solid var(--red-alert);
160
+ }
161
+
162
+ .visible {
163
+ max-height: 500px;
164
+ padding: 15px;
165
+ }
166
+
167
+ .pyramid {
168
+ width: 100px;
169
+ height: 100px;
170
+ position: relative;
171
+ margin: 40px auto;
172
+ transform-style: preserve-3d;
173
+ animation: rotate 20s infinite linear;
174
+ }
175
+
176
+ .pyramid-side {
177
+ position: absolute;
178
+ width: 0;
179
+ height: 0;
180
+ border-left: 50px solid transparent;
181
+ border-right: 50px solid transparent;
182
+ opacity: 0.8;
183
+ }
184
+
185
+ .front {
186
+ border-bottom: 100px solid rgba(255, 215, 0, 0.6);
187
+ transform: rotateY(0deg) translateZ(25px);
188
+ }
189
+
190
+ .back {
191
+ border-bottom: 100px solid rgba(255, 215, 0, 0.6);
192
+ transform: rotateY(180deg) translateZ(25px);
193
+ }
194
+
195
+ .left {
196
+ border-bottom: 100px solid rgba(255, 0, 51, 0.6);
197
+ transform: rotateY(-90deg) translateZ(25px);
198
+ }
199
+
200
+ .right {
201
+ border-bottom: 100px solid rgba(255, 0, 51, 0.6);
202
+ transform: rotateY(90deg) translateZ(25px);
203
+ }
204
+
205
+ .base {
206
+ position: absolute;
207
+ width: 100px;
208
+ height: 100px;
209
+ background: rgba(0, 255, 255, 0.3);
210
+ transform: rotateX(90deg) translateZ(-50px);
211
+ }
212
+
213
+ footer {
214
+ text-align: center;
215
+ padding: 30px 0;
216
+ border-top: 1px dashed var(--red-alert);
217
+ margin-top: 40px;
218
+ font-size: 0.8rem;
219
+ }
220
+
221
+ @keyframes pulse {
222
+ 0% { opacity: 0.8; }
223
+ 100% { opacity: 1; }
224
+ }
225
+
226
+ @keyframes blink {
227
+ 0%, 95%, 100% { opacity: 1; }
228
+ 97% { opacity: 0.1; }
229
+ }
230
+
231
+ @keyframes rotate {
232
+ 0% { transform: rotateY(0deg); }
233
+ 100% { transform: rotateY(360deg); }
234
+ }
235
+
236
+ /* Scrolling text ticker */
237
+ .ticker-container {
238
+ width: 100%;
239
+ overflow: hidden;
240
+ background: rgba(255, 0, 51, 0.2);
241
+ padding: 10px 0;
242
+ margin: 20px 0;
243
+ border-top: 1px solid var(--red-alert);
244
+ border-bottom: 1px solid var(--red-alert);
245
+ }
246
+
247
+ .ticker-content {
248
+ display: inline-block;
249
+ white-space: nowrap;
250
+ animation: ticker 30s linear infinite;
251
+ }
252
+
253
+ @keyframes ticker {
254
+ 0% { transform: translateX(100%); }
255
+ 100% { transform: translateX(-100%); }
256
+ }
257
+
258
+ /* Responsive adjustments */
259
+ @media (max-width: 768px) {
260
+ .evidence-grid {
261
+ grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
262
+ }
263
+
264
+ h1 {
265
+ font-size: 1.8rem;
266
+ }
267
+ }
268
+ </style>
269
+ </head>
270
+ <body>
271
+ <div class="eye-icon">
272
+ <i class="fas fa-eye"></i>
273
+ </div>
274
+
275
+ <div class="container">
276
+ <header>
277
+ <h1>THEY DON'T WANT YOU TO KNOW</h1>
278
+ <p>Everything you've been told is a lie. Wake up, sheeple!</p>
279
+ </header>
280
+
281
+ <div class="ticker-container">
282
+ <div class="ticker-content">
283
+ <i class="fas fa-exclamation-triangle"></i> ALERT: The moon landing was faked | 5G causes COVID | Birds aren't real | The earth is flat | Vaccines contain microchips | Celebrities are clones | The government is hiding aliens | Your thoughts aren't your own <i class="fas fa-exclamation-triangle"></i>
284
+ </div>
285
+ </div>
286
+
287
+ <div class="conspiracy-card">
288
+ <div class="classified">TOP SECRET</div>
289
+ <h2><i class="fas fa-question-circle"></i> Who REALLY Controls the World?</h2>
290
+ <p>You think it's governments? Politicians? HA! They're just puppets for the <span class="redacted" title="Illuminati confirmed">β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ</span> who've been pulling the strings since ancient times.</p>
291
+
292
+ <div class="evidence-grid">
293
+ <div class="evidence-item" onclick="revealTruth('truth1')">
294
+ <i class="fas fa-dollar-sign"></i>
295
+ <p>Banking Cartels</p>
296
+ </div>
297
+ <div class="evidence-item" onclick="revealTruth('truth2')">
298
+ <i class="fas fa-chess-queen"></i>
299
+ <p>Royal Bloodlines</p>
300
+ </div>
301
+ <div class="evidence-item" onclick="revealTruth('truth3')">
302
+ <i class="fas fa-landmark"></i>
303
+ <p>Secret Societies</p>
304
+ </div>
305
+ <div class="evidence-item" onclick="revealTruth('truth4')">
306
+ <i class="fas fa-brain"></i>
307
+ <p>Mind Control</p>
308
+ </div>
309
+ </div>
310
+
311
+ <div id="truth1" class="hidden-truth">
312
+ <h3>The Federal Reserve Scam</h3>
313
+ <p>Private banks create money out of thin air and charge interest! The entire economy is a Ponzi scheme designed to enslave humanity through debt. Wake up!</p>
314
+ <p>Did you know: All major wars were funded by the same banking families on BOTH sides?</p>
315
+ </div>
316
+
317
+ <div id="truth2" class="hidden-truth">
318
+ <h3>The 13 Bloodlines</h3>
319
+ <p>There are 13 ancient families who interbreed to maintain pure DNA lines tracing back to... well, we can't say that here. <span class="redacted" title="Too dangerous to reveal">β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ</span></p>
320
+ <p>They control all major institutions while living in luxury as we slave away.</p>
321
+ </div>
322
+
323
+ <div id="truth3" class="hidden-truth">
324
+ <h3>Freemason Deception</h3>
325
+ <p>From the Freemasons to Skull & Bones to Bohemian Grove - these secret societies perform occult rituals while deciding our fate behind closed doors.</p>
326
+ <p>Their symbols are EVERYWHERE once you open your eyes (pyramids, all-seeing eyes, obelisks).</p>
327
+ </div>
328
+
329
+ <div id="truth4" class="hidden-truth">
330
+ <h3>MKUltra Never Ended</h3>
331
+ <p>The CIA's mind control program was just the beginning. Now they use fluoride, media propaganda, and <span class="redacted" title="Classified">β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ</span> frequencies to keep us docile.</p>
332
+ <p>Your thoughts aren't yours - they're implanted through TV and social media algorithms.</p>
333
+ </div>
334
+ </div>
335
+
336
+ <div class="conspiracy-card">
337
+ <h2><i class="fas fa-history"></i> Rewriting History</h2>
338
+ <p>Everything you learned in school is propaganda. The real history has been systematically erased and replaced with their approved narrative.</p>
339
+
340
+ <button class="reveal-btn" onclick="revealTruth('historyTruth')">Show Me The Truth</button>
341
+
342
+ <div id="historyTruth" class="hidden-truth">
343
+ <h3>The Tartarian Empire Cover-Up</h3>
344
+ <p>Before the 19th century, there was a global advanced civilization with free energy technology. The mud floods of the 1800s wiped them out, and the elites took credit for their architecture.</p>
345
+
346
+ <h3>Phantom Time Hypothesis</h3>
347
+ <p>297 years (614-911 AD) were INVENTED by the Vatican. Charlemagne never existed! Carbon dating is rigged to hide this.</p>
348
+
349
+ <h3>Ancient High Technology</h3>
350
+ <p>The pyramids weren't tombs - they were <span class="redacted" title="Energy generators">β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ</span> machines. The precision of ancient megaliths proves we've been in technological decline for millennia.</p>
351
+ </div>
352
+ </div>
353
+
354
+ <div class="pyramid">
355
+ <div class="pyramid-side front"></div>
356
+ <div class="pyramid-side back"></div>
357
+ <div class="pyramid-side left"></div>
358
+ <div class="pyramid-side right"></div>
359
+ <div class="base"></div>
360
+ </div>
361
+
362
+ <div class="conspiracy-card">
363
+ <h2><i class="fas fa-user-secret"></i> How To Break Free</h2>
364
+ <p>They want you scared, divided, and distracted. Here's how to resist:</p>
365
+ <ul>
366
+ <li>Question EVERYTHING - especially "official" narratives</li>
367
+ <li>Research beyond mainstream sources (but avoid controlled opposition)</li>
368
+ <li>Detox from fluoride and processed foods (they calcify your pineal gland)</li>
369
+ <li>Use cash when possible (digital currency = total control)</li>
370
+ <li>Spread awareness but be careful - they monitor dissent</li>
371
+ </ul>
372
+
373
+ <p>Remember: The greatest trick the <span class="redacted" title="Global elite">β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ</span> ever pulled was convincing the world they don't exist.</p>
374
+ </div>
375
+
376
+ <footer>
377
+ <p>This website has been viewed <span id="viewCount">0</span> times. They're watching.</p>
378
+ <p><i class="fas fa-exclamation-triangle"></i> WARNING: Accessing this knowledge may result in being placed on watchlists <i class="fas fa-exclamation-triangle"></i></p>
379
+ </footer>
380
+ </div>
381
+
382
+ <script>
383
+ // Simple view counter (they're probably tracking this anyway)
384
+ let views = localStorage.getItem('conspiracyViews') || 0;
385
+ views++;
386
+ localStorage.setItem('conspiracyViews', views);
387
+ document.getElementById('viewCount').textContent = views;
388
+
389
+ // Truth reveal function
390
+ function revealTruth(id) {
391
+ const element = document.getElementById(id);
392
+ element.classList.toggle('visible');
393
+
394
+ // Close other open truths
395
+ document.querySelectorAll('.hidden-truth').forEach(truth => {
396
+ if (truth.id !== id && truth.classList.contains('visible')) {
397
+ truth.classList.remove('visible');
398
+ }
399
+ });
400
+ }
401
+
402
+ // Make all reveal buttons work
403
+ document.querySelectorAll('.reveal-btn').forEach(button => {
404
+ button.addEventListener('click', function() {
405
+ const targetId = this.getAttribute('onclick').match(/'([^']+)'/)[1];
406
+ revealTruth(targetId);
407
+ });
408
+ });
409
+
410
+ // Random redacted hover effects
411
+ document.querySelectorAll('.redacted').forEach(el => {
412
+ el.addEventListener('mouseover', function() {
413
+ this.style.animation = 'shake 0.5s';
414
+ setTimeout(() => {
415
+ this.style.animation = '';
416
+ }, 500);
417
+ });
418
+ });
419
+
420
+ // Add some paranoia - console warning
421
+ console.log('%cSTOP!', 'color: red; font-size: 50px; font-weight: bold;');
422
+ console.log('%cThey monitor browser consoles too. Be careful what you paste here.', 'color: yellow; font-size: 16px;');
423
+ </script>
424
+ <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 <a href="https://enzostvs-deepsite.hf.space" style="color: #fff;" target="_blank" >DeepSite</a> <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;"></p></body>
425
+ </html>