leobora commited on
Commit
abfe987
·
verified ·
1 Parent(s): 3d4fe2c

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +173 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Tonhao Feio
3
- emoji: 🦀
4
  colorFrom: purple
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: tonhao-feio
3
+ emoji: 🐳
4
  colorFrom: purple
5
+ colorTo: red
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,173 @@
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="pt-BR">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>SITE FEIO</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <style>
9
+ @import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,400;0,700;1,400;1,700&display=swap');
10
+
11
+ body {
12
+ font-family: 'Comic Neue', cursive;
13
+ background-color: #ff00ff;
14
+ background-image: linear-gradient(45deg, #ff00ff 0%, #ffff00 100%);
15
+ animation: rainbow 10s linear infinite;
16
+ }
17
+
18
+ @keyframes rainbow {
19
+ 0% { filter: hue-rotate(0deg); }
20
+ 100% { filter: hue-rotate(360deg); }
21
+ }
22
+
23
+ .car-image, .kid-image {
24
+ border: 10px dotted lime;
25
+ transform: rotate(5deg);
26
+ box-shadow: 20px 20px 0px rgba(0,0,0,0.3);
27
+ transition: all 0.5s ease;
28
+ }
29
+
30
+ .car-image:hover, .kid-image:hover {
31
+ transform: rotate(-5deg) scale(1.1);
32
+ border-color: red;
33
+ filter: sepia(100%);
34
+ }
35
+
36
+ .ugly-button {
37
+ background: linear-gradient(to right, #ff0000, #00ff00, #0000ff);
38
+ color: white;
39
+ text-shadow: 2px 2px 0px black;
40
+ border: 5px dashed yellow;
41
+ padding: 15px 30px;
42
+ font-size: 24px;
43
+ font-weight: bold;
44
+ cursor: pointer;
45
+ transition: all 0.3s;
46
+ animation: pulse 2s infinite;
47
+ }
48
+
49
+ .ugly-button:hover {
50
+ transform: skewX(-20deg) scale(1.2);
51
+ background: linear-gradient(to right, #ffff00, #ff00ff, #00ffff);
52
+ }
53
+
54
+ @keyframes pulse {
55
+ 0% { transform: scale(1); }
56
+ 50% { transform: scale(1.1); }
57
+ 100% { transform: scale(1); }
58
+ }
59
+
60
+ .title {
61
+ font-size: 72px;
62
+ text-shadow: 5px 5px 0px rgba(255,255,255,0.5);
63
+ color: #000;
64
+ -webkit-text-stroke: 2px #fff;
65
+ letter-spacing: 5px;
66
+ transform: rotate(-5deg);
67
+ animation: title-shake 0.5s infinite alternate;
68
+ }
69
+
70
+ @keyframes title-shake {
71
+ 0% { transform: rotate(-5deg) translateX(0px); }
72
+ 100% { transform: rotate(-5deg) translateX(10px); }
73
+ }
74
+
75
+ .arrow {
76
+ font-size: 40px;
77
+ animation: bounce 0.5s infinite alternate;
78
+ display: inline-block;
79
+ transform: rotate(90deg);
80
+ }
81
+
82
+ @keyframes bounce {
83
+ 0% { transform: rotate(90deg) translateY(0); }
84
+ 100% { transform: rotate(90deg) translateY(-10px); }
85
+ }
86
+
87
+ .caption {
88
+ background: rgba(255,255,255,0.7);
89
+ padding: 10px;
90
+ border-radius: 50%;
91
+ display: inline-block;
92
+ border: 3px dashed red;
93
+ transform: rotate(3deg);
94
+ margin-top: -20px;
95
+ }
96
+ </style>
97
+ </head>
98
+ <body class="min-h-screen flex flex-col items-center justify-center p-4">
99
+ <div class="text-center">
100
+ <h1 class="title mb-10">FODASE O TONHAO KKKKKKK</h1>
101
+
102
+ <img
103
+ src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRnvOQGE-8IssU9XliHFPUwy6guRFgSNAj3Mg&s"
104
+ alt="Carro de corrida feio"
105
+ class="car-image w-full max-w-2xl mx-auto mb-10"
106
+ >
107
+
108
+ <!-- Nova seção com a criança -->
109
+ <div class="mb-10 relative">
110
+ <img
111
+ src="https://i.ytimg.com/vi/OzS_46KFGAQ/maxresdefault.jpg"
112
+ alt="Tonhão criança"
113
+ class="kid-image w-full max-w-md mx-auto"
114
+ >
115
+ <div class="mt-2">
116
+ <span class="arrow">➡</span>
117
+ <span class="caption text-xl font-bold">TONHÃO QUANDO CRIANÇA</span>
118
+ </div>
119
+ </div>
120
+
121
+ <button
122
+ onclick="window.location.href='http://wa.me/5541984277646'"
123
+ class="ugly-button rounded-none"
124
+ >
125
+ CLIQUE AQUI PARA XINGAR O TONHÃO
126
+ </button>
127
+
128
+ <div class="mt-10 text-white text-xl">
129
+ <p>⚠️ ATENÇÃO: Este site foi feito para ser feio de propósito, igual o Tonhão</p>
130
+ <p class="mt-2">Não nos responsabilizamos por danos oculares ou convulsões</p>
131
+ </div>
132
+ </div>
133
+
134
+ <div class="fixed bottom-0 right-0 p-4 bg-black text-white text-xs">
135
+ <p>Você está visitando o site mais feio da internet </p>
136
+ </div>
137
+
138
+ <script>
139
+ // Efeito adicional para tornar o site ainda mais irritante
140
+ document.addEventListener('mousemove', function(e) {
141
+ const colors = ['#ff0000', '#00ff00', '#0000ff', '#ffff00', '#ff00ff', '#00ffff'];
142
+ const randomColor = colors[Math.floor(Math.random() * colors.length)];
143
+ document.body.style.backgroundColor = randomColor;
144
+
145
+ setTimeout(() => {
146
+ document.body.style.backgroundColor = '';
147
+ }, 100);
148
+ });
149
+
150
+ // Efeito de texto piscando
151
+ setInterval(() => {
152
+ const title = document.querySelector('.title');
153
+ title.style.color = title.style.color === 'black' ? 'white' : 'black';
154
+
155
+ // Faz a seta mudar de cor aleatoriamente
156
+ const arrows = document.querySelectorAll('.arrow');
157
+ arrows.forEach(arrow => {
158
+ const colors = ['red', 'blue', 'green', 'yellow', 'purple'];
159
+ arrow.style.color = colors[Math.floor(Math.random() * colors.length)];
160
+ });
161
+ }, 500);
162
+
163
+ // Faz a legenda girar
164
+ setInterval(() => {
165
+ const captions = document.querySelectorAll('.caption');
166
+ captions.forEach(caption => {
167
+ const rotation = Math.floor(Math.random() * 10) - 5;
168
+ caption.style.transform = `rotate(${rotation}deg)`;
169
+ });
170
+ }, 1000);
171
+ </script>
172
+ <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=leobora/tonhao-feio" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
173
+ </html>