Spaces:
Sleeping
Sleeping
Upload embed.html
Browse files- embed.html +100 -0
embed.html
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
|
| 7 |
+
<title>P.Y.T.R. - YouTube Ringtones</title>
|
| 8 |
+
|
| 9 |
+
<link rel="shortcut icon" href="favicon.ico" />
|
| 10 |
+
<link
|
| 11 |
+
rel="icon"
|
| 12 |
+
type="image/x-icon"
|
| 13 |
+
sizes="16x16 32x32"
|
| 14 |
+
href="favicon.ico"
|
| 15 |
+
/>
|
| 16 |
+
<link rel="apple-touch-icon" sizes="any" href="apple-touch-icon.png" />
|
| 17 |
+
<link rel="manifest" href="manifest.json" />
|
| 18 |
+
<link rel="icon" sizes="192x192" href="favicon.png" />
|
| 19 |
+
|
| 20 |
+
<meta name="theme-color" content="#000000" />
|
| 21 |
+
<meta name="msapplication-TileColor" content="#000000" />
|
| 22 |
+
<meta name="msapplication-TileImage" content="favicon.png" />
|
| 23 |
+
|
| 24 |
+
<style>
|
| 25 |
+
* {
|
| 26 |
+
margin: 0;
|
| 27 |
+
padding: 0;
|
| 28 |
+
box-sizing: border-box;
|
| 29 |
+
font-family: Arial, sans-serif;
|
| 30 |
+
}
|
| 31 |
+
html {
|
| 32 |
+
overflow: hidden; /* Hide scrollbar */
|
| 33 |
+
}
|
| 34 |
+
body {
|
| 35 |
+
background: #111;
|
| 36 |
+
color: #ddd;
|
| 37 |
+
display: flex;
|
| 38 |
+
flex-direction: column;
|
| 39 |
+
align-items: center;
|
| 40 |
+
text-align: center;
|
| 41 |
+
min-height: 100vh;
|
| 42 |
+
padding: 10px;
|
| 43 |
+
}
|
| 44 |
+
.container {
|
| 45 |
+
display: flex;
|
| 46 |
+
flex-direction: column;
|
| 47 |
+
align-items: center;
|
| 48 |
+
width: 100%;
|
| 49 |
+
max-width: 600px;
|
| 50 |
+
flex: 1;
|
| 51 |
+
}
|
| 52 |
+
h1 {
|
| 53 |
+
font-size: 22px;
|
| 54 |
+
margin-bottom: 8px;
|
| 55 |
+
}
|
| 56 |
+
a {
|
| 57 |
+
color: #1e90ff;
|
| 58 |
+
text-decoration: none;
|
| 59 |
+
}
|
| 60 |
+
a:hover {
|
| 61 |
+
text-decoration: underline;
|
| 62 |
+
}
|
| 63 |
+
.logo {
|
| 64 |
+
width: 150px;
|
| 65 |
+
margin: 10px 0;
|
| 66 |
+
}
|
| 67 |
+
iframe {
|
| 68 |
+
width: 100%;
|
| 69 |
+
height: 65vh;
|
| 70 |
+
border: none;
|
| 71 |
+
border-radius: 10px;
|
| 72 |
+
overflow: hidden;
|
| 73 |
+
}
|
| 74 |
+
footer {
|
| 75 |
+
font-size: 12px;
|
| 76 |
+
color: #777;
|
| 77 |
+
margin-top: 10px;
|
| 78 |
+
}
|
| 79 |
+
</style>
|
| 80 |
+
</head>
|
| 81 |
+
<body>
|
| 82 |
+
<div class="container">
|
| 83 |
+
<h1>
|
| 84 |
+
<a href="https://huggingface.co/spaces/sudo-soldier/PYTR"
|
| 85 |
+
>Python YouTube Ringtones</a
|
| 86 |
+
>
|
| 87 |
+
</h1>
|
| 88 |
+
|
| 89 |
+
<img src="icon512.png" class="logo" alt="PYTR Logo" />
|
| 90 |
+
<p>sudo-self/pytr<br /></p>
|
| 91 |
+
<iframe src="https://sudo-soldier-pytr.hf.space"></iframe>
|
| 92 |
+
<p>
|
| 93 |
+
<a href="https://imazing.com/download/macos"
|
| 94 |
+
>iMazing for iPhone Transfer</a
|
| 95 |
+
>
|
| 96 |
+
</p>
|
| 97 |
+
</div>
|
| 98 |
+
</body>
|
| 99 |
+
</html>
|
| 100 |
+
|