Spaces:
Running
Running
Upload index.html
Browse files- static/index.html +218 -183
static/index.html
CHANGED
@@ -1,191 +1,226 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html
|
3 |
<head>
|
|
|
|
|
|
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
-
<meta
|
6 |
-
<meta
|
7 |
-
<
|
8 |
-
<
|
9 |
-
<
|
10 |
-
<
|
11 |
-
|
12 |
-
font-family: 'Roboto', sans-serif;
|
13 |
-
background-color: #f4faff;
|
14 |
-
color: #333;
|
15 |
-
margin: 0;
|
16 |
-
padding: 0;
|
17 |
-
line-height: 1.6;
|
18 |
-
}
|
19 |
-
.container {
|
20 |
-
max-width: 1000px;
|
21 |
-
margin: 40px auto;
|
22 |
-
padding: 0 20px;
|
23 |
-
}
|
24 |
-
header {
|
25 |
-
background: #1e90ff;
|
26 |
-
color: #fff;
|
27 |
-
padding: 30px 0;
|
28 |
-
text-align: center;
|
29 |
-
border-bottom: 3px solid #005f9e;
|
30 |
-
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
31 |
-
}
|
32 |
-
header h1 {
|
33 |
-
margin: 0;
|
34 |
-
font-size: 2.5em;
|
35 |
-
font-weight: 400;
|
36 |
-
}
|
37 |
-
.main {
|
38 |
-
margin-top: 20px;
|
39 |
-
}
|
40 |
-
h2, h3 {
|
41 |
-
color: #1e90ff;
|
42 |
-
font-weight: 400;
|
43 |
-
}
|
44 |
-
.code-block {
|
45 |
-
background: #e0f7ff;
|
46 |
-
padding: 15px;
|
47 |
-
border-left: 5px solid #1e90ff;
|
48 |
-
margin: 20px 0;
|
49 |
-
position: relative;
|
50 |
-
border-radius: 5px;
|
51 |
-
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
52 |
-
}
|
53 |
-
.code-block pre {
|
54 |
-
margin: 0;
|
55 |
-
overflow-x: auto;
|
56 |
-
font-size: 0.9em;
|
57 |
-
}
|
58 |
-
.copy-btn {
|
59 |
-
position: absolute;
|
60 |
-
top: 10px;
|
61 |
-
right: 10px;
|
62 |
-
background: none;
|
63 |
-
border: none;
|
64 |
-
cursor: pointer;
|
65 |
-
outline: none;
|
66 |
-
}
|
67 |
-
.copy-btn img {
|
68 |
-
width: 24px;
|
69 |
-
height: 24px;
|
70 |
-
}
|
71 |
-
.stats-container {
|
72 |
-
display: grid;
|
73 |
-
grid-template-columns: 1fr 1fr;
|
74 |
-
gap: 20px;
|
75 |
-
margin-top: 40px;
|
76 |
-
}
|
77 |
-
.stat-box {
|
78 |
-
background: #fff;
|
79 |
-
padding: 20px;
|
80 |
-
border-radius: 10px;
|
81 |
-
text-align: center;
|
82 |
-
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
83 |
-
transition: transform 0.3s, box-shadow 0.3s;
|
84 |
-
}
|
85 |
-
.stat-box:hover {
|
86 |
-
transform: translateY(-10px);
|
87 |
-
box-shadow: 0 12px 24px rgba(0,0,0,0.1);
|
88 |
-
}
|
89 |
-
.stat-box h3 {
|
90 |
-
margin: 0;
|
91 |
-
font-size: 1.2em;
|
92 |
-
color: #1e90ff;
|
93 |
-
font-weight: 400;
|
94 |
-
}
|
95 |
-
.stat-box p {
|
96 |
-
margin: 10px 0 0;
|
97 |
-
font-size: 2.5em;
|
98 |
-
font-weight: bold;
|
99 |
-
color: #333;
|
100 |
-
}
|
101 |
-
.stat-box.full-width {
|
102 |
-
grid-column: span 2;
|
103 |
-
}
|
104 |
-
footer {
|
105 |
-
background: #1e90ff;
|
106 |
-
color: #fff;
|
107 |
-
text-align: center;
|
108 |
-
padding: 20px 0;
|
109 |
-
position: relative;
|
110 |
-
bottom: 0;
|
111 |
-
width: 100%;
|
112 |
-
margin-top: 40px;
|
113 |
-
box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
|
114 |
-
}
|
115 |
-
footer p {
|
116 |
-
margin: 0;
|
117 |
-
font-size: 0.9em;
|
118 |
-
}
|
119 |
-
</style>
|
120 |
</head>
|
121 |
<body>
|
122 |
-
|
123 |
-
<
|
124 |
-
<
|
125 |
-
|
126 |
-
|
127 |
-
<
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
</div>
|
185 |
-
</div>
|
186 |
-
|
187 |
-
<footer>
|
188 |
-
<p>AkenoAI API Client © 2024</p>
|
189 |
-
</footer>
|
190 |
</body>
|
191 |
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
<head>
|
4 |
+
<title>AKENO TOOLS</title>
|
5 |
+
<meta property="og:image" content="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvCP1T1tG_nglaaF5dYJOFQRM96Xw30te10g&usqp=CAU" />
|
6 |
+
<meta property="og:description" content="" />
|
7 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
8 |
<meta charset="UTF-8">
|
9 |
+
<meta property="og:title" content="TOOLS AKENO" />
|
10 |
+
<meta property="og:url" content="https://tools.betabotz.org" />
|
11 |
+
<link href='/css/styles.css' rel='stylesheet'>
|
12 |
+
<link href="images/favicon.png" rel="icon">
|
13 |
+
<link href="images/favicon.png" rel="apple-touch-icon">
|
14 |
+
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4444980143050884" crossorigin="anonymous"></script>
|
15 |
+
<link href='https://fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
</head>
|
17 |
<body>
|
18 |
+
<div class="center">
|
19 |
+
<h1> AKENO AI TOOLS </h1>
|
20 |
+
<div class="description">
|
21 |
+
A Free TOOLS for Everyone
|
22 |
+
<div id="MyClockDisplay" class="clock" onload="showTime()"></div>
|
23 |
+
<h3>Ai: </h3>
|
24 |
+
<table>
|
25 |
+
<hr>
|
26 |
+
<tr>
|
27 |
+
<th>No</th>
|
28 |
+
<th>Name</th>
|
29 |
+
<th>Method</th>
|
30 |
+
<th>Tab New</th>
|
31 |
+
</tr>
|
32 |
+
<tr>
|
33 |
+
<td>1</td>
|
34 |
+
<td>Remini</td>
|
35 |
+
<td>POST</td>
|
36 |
+
<td><a href="/remini">[ ➠ ]</a></td>
|
37 |
+
</tr>
|
38 |
+
<tr>
|
39 |
+
<td>2</td>
|
40 |
+
<td>Removebg</td>
|
41 |
+
<td>POST</td>
|
42 |
+
<td><a href="/removebg">[ ➠ ]</a></td>
|
43 |
+
</tr>
|
44 |
+
<tr>
|
45 |
+
<td>3</td>
|
46 |
+
<td>To Anime</td>
|
47 |
+
<td>POST</td>
|
48 |
+
<td><a href="/toanime">[ ➠ ]</a></td>
|
49 |
+
</tr>
|
50 |
+
<tr>
|
51 |
+
<td>4</td>
|
52 |
+
<td>To Zombie</td>
|
53 |
+
<td>POST</td>
|
54 |
+
<td><a href="/tozombie">[ ➠ ]</a></td>
|
55 |
+
</tr>
|
56 |
+
</table>
|
57 |
+
<h3>Feature: </h3>
|
58 |
+
<table>
|
59 |
+
<hr>
|
60 |
+
<tr>
|
61 |
+
<th>No</th>
|
62 |
+
<th>Name</th>
|
63 |
+
<th>Method</th>
|
64 |
+
<th>Action</th>
|
65 |
+
</tr>
|
66 |
+
<tr>
|
67 |
+
<td>1</td>
|
68 |
+
<td>Ai-Openai</td>
|
69 |
+
<td>GET</td>
|
70 |
+
<td><a href="/tools/openai?q=hai ai perkenalkan dirimu">[ ➠ ]</a></td>
|
71 |
+
</tr>
|
72 |
+
<tr>
|
73 |
+
<td>2</td>
|
74 |
+
<td>Aio Videodl</td>
|
75 |
+
<td>GET</td>
|
76 |
+
<td><a href="/tools/aio?url=">[ ➠ ]</a></td>
|
77 |
+
</tr>
|
78 |
+
<tr>
|
79 |
+
<td>3</td>
|
80 |
+
<td>Capcut Dl</td>
|
81 |
+
<td>GET</td>
|
82 |
+
<td><a href="/tools/capcutdl?url=">[ ➠ ]</a></td>
|
83 |
+
</tr>
|
84 |
+
<tr>
|
85 |
+
<td>4</td>
|
86 |
+
<td>Douyin Dl</td>
|
87 |
+
<td>GET</td>
|
88 |
+
<td><a href="/tools/douyindl?url=">[ ➠ ]</a></td>
|
89 |
+
</tr>
|
90 |
+
<tr>
|
91 |
+
<td>5</td>
|
92 |
+
<td>Facebook Dl</td>
|
93 |
+
<td>GET</td>
|
94 |
+
<td><a href="/tools/facebookdl?url=">[ ➠ ]</a></td>
|
95 |
+
</tr>
|
96 |
+
<tr>
|
97 |
+
<td>6</td>
|
98 |
+
<td>Instagram Dl</td>
|
99 |
+
<td>GET</td>
|
100 |
+
<td><a href="/tools/instagramdl?url=">[ ➠ ]</a></td>
|
101 |
+
</tr>
|
102 |
+
<tr>
|
103 |
+
<td>7</td>
|
104 |
+
<td>Pinterest Dl</td>
|
105 |
+
<td>GET</td>
|
106 |
+
<td><a href="/tools/pinterestdl?url=">[ ➠ ]</a></td>
|
107 |
+
</tr>
|
108 |
+
<tr>
|
109 |
+
<td>8</td>
|
110 |
+
<td>Spotify Dl</td>
|
111 |
+
<td>GET</td>
|
112 |
+
<td><a href="/tools/spotifydl?url=">[ ➠ ]</a></td>
|
113 |
+
</tr>
|
114 |
+
<tr>
|
115 |
+
<td>9</td>
|
116 |
+
<td>Spotify Search</td>
|
117 |
+
<td>GET</td>
|
118 |
+
<td><a href="/tools/spotify-search?q=">[ ➠ ]</a></td>
|
119 |
+
</tr>
|
120 |
+
<tr>
|
121 |
+
<td>10</td>
|
122 |
+
<td>Stalk Ig</td>
|
123 |
+
<td>GET</td>
|
124 |
+
<td><a href="/tools/stalk-ig?q=">[ ➠ ]</a></td>
|
125 |
+
</tr>
|
126 |
+
<tr>
|
127 |
+
<td>11</td>
|
128 |
+
<td>Threads Dl</td>
|
129 |
+
<td>GET</td>
|
130 |
+
<td><a href="/tools/threadsdl?url=">[ ➠ ]</a></td>
|
131 |
+
</tr>
|
132 |
+
<tr>
|
133 |
+
<td>12</td>
|
134 |
+
<td>Tiktok Dl</td>
|
135 |
+
<td>GET</td>
|
136 |
+
<td><a href="/tools/tiktokdl?url=">[ ➠ ]</a></td>
|
137 |
+
</tr>
|
138 |
+
<tr>
|
139 |
+
<td>13</td>
|
140 |
+
<td>Twitter Dl</td>
|
141 |
+
<td>GET</td>
|
142 |
+
<td><a href="/tools/twitterdl?url=">[ ➠ ]</a></td>
|
143 |
+
</tr>
|
144 |
+
<tr>
|
145 |
+
<td>14</td>
|
146 |
+
<td>Xnxx Dl</td>
|
147 |
+
<td>GET</td>
|
148 |
+
<td><a href="/tools/xnxxdl?url=">[ ➠ ]</a></td>
|
149 |
+
</tr>
|
150 |
+
<tr>
|
151 |
+
<td>15</td>
|
152 |
+
<td>Xvideos Dl</td>
|
153 |
+
<td>GET</td>
|
154 |
+
<td><a href="/tools/xvideosdl?url=">[ ➠ ]</a></td>
|
155 |
+
</tr>
|
156 |
+
<tr>
|
157 |
+
<td>16</td>
|
158 |
+
<td>Xnxx Search</td>
|
159 |
+
<td>GET</td>
|
160 |
+
<td><a href="/tools/xnxxsearch?url=">[ ➠ ]</a></td>
|
161 |
+
</tr>
|
162 |
+
<tr>
|
163 |
+
<td>17</td>
|
164 |
+
<td>Xvideos Search</td>
|
165 |
+
<td>GET</td>
|
166 |
+
<td><a href="/tools/xvideosearch?url=">[ ➠ ]</a></td>
|
167 |
+
</tr>
|
168 |
+
</table>
|
169 |
+
<h3>Downloader Web: </h3>
|
170 |
+
<table>
|
171 |
+
<hr>
|
172 |
+
<tr>
|
173 |
+
<th>No</th>
|
174 |
+
<th>Name</th>
|
175 |
+
<th>Tab New</th>
|
176 |
+
</tr>
|
177 |
+
<tr>
|
178 |
+
<td>1</td>
|
179 |
+
<td>Douyin Downloader</td>
|
180 |
+
<td><a href="/douyindl">[ ➠ ]</a></td>
|
181 |
+
</tr>
|
182 |
+
<tr>
|
183 |
+
<td>2</td>
|
184 |
+
<td>Tiktok Downloader</td>
|
185 |
+
<td><a href="/tiktokdl">[ ➠ ]</a></td>
|
186 |
+
</tr>
|
187 |
+
</table>
|
188 |
+
<h3>Scraper: </h3>
|
189 |
+
<table>
|
190 |
+
<hr>
|
191 |
+
<tr>
|
192 |
+
<th>No</th>
|
193 |
+
<th>Name</th>
|
194 |
+
<th>Tab New</th>
|
195 |
+
</tr>
|
196 |
+
<tr>
|
197 |
+
<td>1</td>
|
198 |
+
<td>Scraper Remini</td>
|
199 |
+
<td><a href="/remini-docs">[ ➠ ]</a></td>
|
200 |
+
</tr>
|
201 |
+
<tr>
|
202 |
+
<td>2</td>
|
203 |
+
<td>Scraper Removebg</td>
|
204 |
+
<td><a href="/removebg-docs">[ ➠ ]</a></td>
|
205 |
+
</tr>
|
206 |
+
<tr>
|
207 |
+
<td>3</td>
|
208 |
+
<td>Scraper To Anime</td>
|
209 |
+
<td><a href="/toanime-docs">[ ➠ ]</a></td>
|
210 |
+
</tr>
|
211 |
+
<tr>
|
212 |
+
<td>4</td>
|
213 |
+
<td>Scraper To Zombie</td>
|
214 |
+
<td><a href="/tozombie-docs">[ ➠ ]</a></td>
|
215 |
+
</tr>
|
216 |
+
</table>
|
217 |
+
<br>
|
218 |
+
<hr>
|
219 |
+
<footer>
|
220 |
+
<p class="footer__copy">© Developed with by Randydev</p>
|
221 |
+
</footer>
|
222 |
+
</br>
|
223 |
+
</hr>
|
224 |
</div>
|
|
|
|
|
|
|
|
|
|
|
225 |
</body>
|
226 |
</html>
|