Add 3 files
Browse files- README.md +7 -5
- index.html +285 -19
- prompts.txt +1 -0
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
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: adulttube
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: green
|
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,285 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Adult Video Browser</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 |
+
.video-card {
|
11 |
+
transition: transform 0.2s;
|
12 |
+
}
|
13 |
+
.video-card:hover {
|
14 |
+
transform: scale(1.03);
|
15 |
+
}
|
16 |
+
.category-chip {
|
17 |
+
transition: all 0.2s;
|
18 |
+
}
|
19 |
+
.category-chip:hover {
|
20 |
+
transform: translateY(-2px);
|
21 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
22 |
+
}
|
23 |
+
.nav-item {
|
24 |
+
position: relative;
|
25 |
+
}
|
26 |
+
.nav-item.active::after {
|
27 |
+
content: '';
|
28 |
+
position: absolute;
|
29 |
+
bottom: -5px;
|
30 |
+
left: 50%;
|
31 |
+
transform: translateX(-50%);
|
32 |
+
width: 20px;
|
33 |
+
height: 3px;
|
34 |
+
background-color: #ec4899;
|
35 |
+
border-radius: 3px;
|
36 |
+
}
|
37 |
+
.search-bar:focus {
|
38 |
+
outline: none;
|
39 |
+
box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2);
|
40 |
+
}
|
41 |
+
</style>
|
42 |
+
</head>
|
43 |
+
<body class="bg-gray-100 font-sans">
|
44 |
+
<div class="max-w-md mx-auto bg-white min-h-screen shadow-lg overflow-hidden">
|
45 |
+
<!-- Header -->
|
46 |
+
<header class="bg-gradient-to-r from-purple-600 to-pink-500 p-4 text-white">
|
47 |
+
<div class="flex justify-between items-center">
|
48 |
+
<div class="flex items-center space-x-2">
|
49 |
+
<i class="fas fa-video text-xl"></i>
|
50 |
+
<h1 class="text-xl font-bold">AdultTube</h1>
|
51 |
+
</div>
|
52 |
+
<div class="flex space-x-4">
|
53 |
+
<button class="text-white">
|
54 |
+
<i class="fas fa-search"></i>
|
55 |
+
</button>
|
56 |
+
<button class="text-white">
|
57 |
+
<i class="fas fa-user"></i>
|
58 |
+
</button>
|
59 |
+
</div>
|
60 |
+
</div>
|
61 |
+
|
62 |
+
<div class="mt-4 relative">
|
63 |
+
<input type="text" placeholder="Search videos..."
|
64 |
+
class="w-full py-2 px-4 rounded-full bg-white bg-opacity-20 placeholder-white text-white search-bar">
|
65 |
+
<button class="absolute right-3 top-2 text-white">
|
66 |
+
<i class="fas fa-search"></i>
|
67 |
+
</button>
|
68 |
+
</div>
|
69 |
+
</header>
|
70 |
+
|
71 |
+
<!-- Navigation -->
|
72 |
+
<nav class="flex justify-around py-3 border-b">
|
73 |
+
<a href="#" class="nav-item active text-pink-500">
|
74 |
+
<i class="fas fa-home"></i>
|
75 |
+
<span class="block text-xs mt-1">Home</span>
|
76 |
+
</a>
|
77 |
+
<a href="#" class="nav-item text-gray-500">
|
78 |
+
<i class="fas fa-fire"></i>
|
79 |
+
<span class="block text-xs mt-1">Trending</span>
|
80 |
+
</a>
|
81 |
+
<a href="#" class="nav-item text-gray-500">
|
82 |
+
<i class="fas fa-star"></i>
|
83 |
+
<span class="block text-xs mt-1">Premium</span>
|
84 |
+
</a>
|
85 |
+
<a href="#" class="nav-item text-gray-500">
|
86 |
+
<i class="fas fa-history"></i>
|
87 |
+
<span class="block text-xs mt-1">History</span>
|
88 |
+
</a>
|
89 |
+
<a href="#" class="nav-item text-gray-500">
|
90 |
+
<i class="fas fa-heart"></i>
|
91 |
+
<span class="block text-xs mt-1">Favorites</span>
|
92 |
+
</a>
|
93 |
+
</nav>
|
94 |
+
|
95 |
+
<!-- Main Content -->
|
96 |
+
<main class="p-4 overflow-y-auto" style="max-height: calc(100vh - 180px)">
|
97 |
+
<!-- Categories -->
|
98 |
+
<div class="mb-6">
|
99 |
+
<h2 class="text-lg font-bold mb-3 text-gray-800">Categories</h2>
|
100 |
+
<div class="flex flex-wrap gap-2">
|
101 |
+
<button class="category-chip bg-pink-100 text-pink-700 px-3 py-1 rounded-full text-sm font-medium">Amateur</button>
|
102 |
+
<button class="category-chip bg-blue-100 text-blue-700 px-3 py-1 rounded-full text-sm font-medium">Anal</button>
|
103 |
+
<button class="category-chip bg-green-100 text-green-700 px-3 py-1 rounded-full text-sm font-medium">Asian</button>
|
104 |
+
<button class="category-chip bg-yellow-100 text-yellow-700 px-3 py-1 rounded-full text-sm font-medium">BBW</button>
|
105 |
+
<button class="category-chip bg-purple-100 text-purple-700 px-3 py-1 rounded-full text-sm font-medium">BDSM</button>
|
106 |
+
<button class="category-chip bg-red-100 text-red-700 px-3 py-1 rounded-full text-sm font-medium">Blonde</button>
|
107 |
+
<button class="category-chip bg-indigo-100 text-indigo-700 px-3 py-1 rounded-full text-sm font-medium">Brunette</button>
|
108 |
+
<button class="category-chip bg-gray-100 text-gray-700 px-3 py-1 rounded-full text-sm font-medium">More...</button>
|
109 |
+
</div>
|
110 |
+
</div>
|
111 |
+
|
112 |
+
<!-- Recommended Videos -->
|
113 |
+
<div class="mb-6">
|
114 |
+
<div class="flex justify-between items-center mb-3">
|
115 |
+
<h2 class="text-lg font-bold text-gray-800">Recommended For You</h2>
|
116 |
+
<a href="#" class="text-sm text-pink-500">See all</a>
|
117 |
+
</div>
|
118 |
+
<div class="grid grid-cols-2 gap-3">
|
119 |
+
<!-- Video Card 1 -->
|
120 |
+
<div class="video-card bg-white rounded-lg overflow-hidden shadow">
|
121 |
+
<div class="relative">
|
122 |
+
<img src="https://via.placeholder.com/160x90/ec4899/ffffff?text=Video+1"
|
123 |
+
alt="Video thumbnail" class="w-full h-32 object-cover">
|
124 |
+
<span class="absolute bottom-1 right-1 bg-black bg-opacity-70 text-white text-xs px-1 rounded">12:34</span>
|
125 |
+
</div>
|
126 |
+
<div class="p-2">
|
127 |
+
<h3 class="text-sm font-medium text-gray-800 truncate">Hot amateur couple having fun</h3>
|
128 |
+
<div class="flex justify-between text-xs text-gray-500 mt-1">
|
129 |
+
<span>1.2M views</span>
|
130 |
+
<span>95%</span>
|
131 |
+
</div>
|
132 |
+
</div>
|
133 |
+
</div>
|
134 |
+
|
135 |
+
<!-- Video Card 2 -->
|
136 |
+
<div class="video-card bg-white rounded-lg overflow-hidden shadow">
|
137 |
+
<div class="relative">
|
138 |
+
<img src="https://via.placeholder.com/160x90/6366f1/ffffff?text=Video+2"
|
139 |
+
alt="Video thumbnail" class="w-full h-32 object-cover">
|
140 |
+
<span class="absolute bottom-1 right-1 bg-black bg-opacity-70 text-white text-xs px-1 rounded">8:21</span>
|
141 |
+
</div>
|
142 |
+
<div class="p-2">
|
143 |
+
<h3 class="text-sm font-medium text-gray-800 truncate">Passionate night with brunette</h3>
|
144 |
+
<div class="flex justify-between text-xs text-gray-500 mt-1">
|
145 |
+
<span>856K views</span>
|
146 |
+
<span>92%</span>
|
147 |
+
</div>
|
148 |
+
</div>
|
149 |
+
</div>
|
150 |
+
</div>
|
151 |
+
</div>
|
152 |
+
|
153 |
+
<!-- Trending Now -->
|
154 |
+
<div class="mb-6">
|
155 |
+
<div class="flex justify-between items-center mb-3">
|
156 |
+
<h2 class="text-lg font-bold text-gray-800">Trending Now</h2>
|
157 |
+
<a href="#" class="text-sm text-pink-500">See all</a>
|
158 |
+
</div>
|
159 |
+
<div class="space-y-3">
|
160 |
+
<!-- Trending Video 1 -->
|
161 |
+
<div class="video-card flex bg-white rounded-lg overflow-hidden shadow">
|
162 |
+
<div class="relative w-1/3">
|
163 |
+
<img src="https://via.placeholder.com/120x90/f59e0b/ffffff?text=Trending+1"
|
164 |
+
alt="Video thumbnail" class="w-full h-full object-cover">
|
165 |
+
<span class="absolute bottom-1 right-1 bg-black bg-opacity-70 text-white text-xs px-1 rounded">15:47</span>
|
166 |
+
</div>
|
167 |
+
<div class="p-2 w-2/3">
|
168 |
+
<h3 class="text-sm font-medium text-gray-800 line-clamp-2">Steamy session with busty blonde in the shower</h3>
|
169 |
+
<div class="flex justify-between text-xs text-gray-500 mt-1">
|
170 |
+
<span>2.4M views</span>
|
171 |
+
<span>97%</span>
|
172 |
+
</div>
|
173 |
+
<div class="flex items-center mt-1 text-xs text-gray-500">
|
174 |
+
<i class="fas fa-bolt text-yellow-500 mr-1"></i>
|
175 |
+
<span>#1 Trending</span>
|
176 |
+
</div>
|
177 |
+
</div>
|
178 |
+
</div>
|
179 |
+
|
180 |
+
<!-- Trending Video 2 -->
|
181 |
+
<div class="video-card flex bg-white rounded-lg overflow-hidden shadow">
|
182 |
+
<div class="relative w-1/3">
|
183 |
+
<img src="https://via.placeholder.com/120x90/10b981/ffffff?text=Trending+2"
|
184 |
+
alt="Video thumbnail" class="w-full h-full object-cover">
|
185 |
+
<span class="absolute bottom-1 right-1 bg-black bg-opacity-70 text-white text-xs px-1 rounded">22:15</span>
|
186 |
+
</div>
|
187 |
+
<div class="p-2 w-2/3">
|
188 |
+
<h3 class="text-sm font-medium text-gray-800 line-clamp-2">Romantic couple explores new positions</h3>
|
189 |
+
<div class="flex justify-between text-xs text-gray-500 mt-1">
|
190 |
+
<span>1.8M views</span>
|
191 |
+
<span>96%</span>
|
192 |
+
</div>
|
193 |
+
<div class="flex items-center mt-1 text-xs text-gray-500">
|
194 |
+
<i class="fas fa-bolt text-yellow-500 mr-1"></i>
|
195 |
+
<span>#3 Trending</span>
|
196 |
+
</div>
|
197 |
+
</div>
|
198 |
+
</div>
|
199 |
+
</div>
|
200 |
+
</div>
|
201 |
+
|
202 |
+
<!-- Popular Categories -->
|
203 |
+
<div>
|
204 |
+
<h2 class="text-lg font-bold mb-3 text-gray-800">Popular Categories</h2>
|
205 |
+
<div class="grid grid-cols-3 gap-2">
|
206 |
+
<div class="category-card relative rounded-lg overflow-hidden h-24">
|
207 |
+
<img src="https://via.placeholder.com/120x90/8b5cf6/ffffff?text=Amateur"
|
208 |
+
alt="Category" class="w-full h-full object-cover">
|
209 |
+
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center">
|
210 |
+
<span class="text-white font-medium text-sm">Amateur</span>
|
211 |
+
</div>
|
212 |
+
</div>
|
213 |
+
<div class="category-card relative rounded-lg overflow-hidden h-24">
|
214 |
+
<img src="https://via.placeholder.com/120x90/ec4899/ffffff?text=Teen"
|
215 |
+
alt="Category" class="w-full h-full object-cover">
|
216 |
+
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center">
|
217 |
+
<span class="text-white font-medium text-sm">Teen</span>
|
218 |
+
</div>
|
219 |
+
</div>
|
220 |
+
<div class="category-card relative rounded-lg overflow-hidden h-24">
|
221 |
+
<img src="https://via.placeholder.com/120x90/3b82f6/ffffff?text=MILF"
|
222 |
+
alt="Category" class="w-full h-full object-cover">
|
223 |
+
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center">
|
224 |
+
<span class="text-white font-medium text-sm">MILF</span>
|
225 |
+
</div>
|
226 |
+
</div>
|
227 |
+
</div>
|
228 |
+
</div>
|
229 |
+
</main>
|
230 |
+
|
231 |
+
<!-- Bottom Navigation -->
|
232 |
+
<div class="fixed bottom-0 left-0 right-0 max-w-md mx-auto bg-white border-t flex justify-around py-2">
|
233 |
+
<button class="text-pink-500">
|
234 |
+
<i class="fas fa-home text-xl"></i>
|
235 |
+
</button>
|
236 |
+
<button class="text-gray-500">
|
237 |
+
<i class="fas fa-compass text-xl"></i>
|
238 |
+
</button>
|
239 |
+
<button class="bg-pink-500 text-white p-2 rounded-full -mt-6 shadow-lg">
|
240 |
+
<i class="fas fa-plus text-xl"></i>
|
241 |
+
</button>
|
242 |
+
<button class="text-gray-500">
|
243 |
+
<i class="fas fa-bookmark text-xl"></i>
|
244 |
+
</button>
|
245 |
+
<button class="text-gray-500">
|
246 |
+
<i class="fas fa-cog text-xl"></i>
|
247 |
+
</button>
|
248 |
+
</div>
|
249 |
+
</div>
|
250 |
+
|
251 |
+
<script>
|
252 |
+
// Simple interactivity
|
253 |
+
document.addEventListener('DOMContentLoaded', function() {
|
254 |
+
// Change active nav item on click
|
255 |
+
const navItems = document.querySelectorAll('.nav-item');
|
256 |
+
navItems.forEach(item => {
|
257 |
+
item.addEventListener('click', function(e) {
|
258 |
+
e.preventDefault();
|
259 |
+
navItems.forEach(i => i.classList.remove('active', 'text-pink-500'));
|
260 |
+
navItems.forEach(i => i.classList.add('text-gray-500'));
|
261 |
+
this.classList.add('active', 'text-pink-500');
|
262 |
+
this.classList.remove('text-gray-500');
|
263 |
+
});
|
264 |
+
});
|
265 |
+
|
266 |
+
// Simulate video click
|
267 |
+
const videoCards = document.querySelectorAll('.video-card');
|
268 |
+
videoCards.forEach(card => {
|
269 |
+
card.addEventListener('click', function() {
|
270 |
+
alert('This is just a demo. In a real app, this would open the video player.');
|
271 |
+
});
|
272 |
+
});
|
273 |
+
|
274 |
+
// Simulate category click
|
275 |
+
const categoryChips = document.querySelectorAll('.category-chip');
|
276 |
+
categoryChips.forEach(chip => {
|
277 |
+
chip.addEventListener('click', function() {
|
278 |
+
const category = this.textContent.trim();
|
279 |
+
alert(`Filtering by category: ${category}`);
|
280 |
+
});
|
281 |
+
});
|
282 |
+
});
|
283 |
+
</script>
|
284 |
+
<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=h4z333/adulttube" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
285 |
+
</html>
|
prompts.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
ca u bild me an android app too look videos from wwww.xnxx.com www.xvideos.com www.pornhub.com organisiere the videos categories
|