Spaces:
Running
Running
Update index.html
Browse files- index.html +14 -2
index.html
CHANGED
@@ -4,10 +4,22 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Bad Apple!!</title>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
</head>
|
8 |
<body>
|
9 |
-
|
10 |
-
|
11 |
<video controls autoplay>
|
12 |
<source src="bad-apple.mp4" type="video/mp4">
|
13 |
</video>
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Bad Apple!!</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
display: flex;
|
10 |
+
justify-content: center;
|
11 |
+
align-items: center;
|
12 |
+
height: 100vh;
|
13 |
+
margin: 0;
|
14 |
+
}
|
15 |
+
h1, h2, video {
|
16 |
+
text-align: center;
|
17 |
+
}
|
18 |
+
</style>
|
19 |
</head>
|
20 |
<body>
|
21 |
+
<h1>Bad Apple Video (On Hugging Face Spaces)</h1>
|
22 |
+
<h2>Made by <a href="https://linktr.ee/Nick088">Nick088</a><br><a href="https://en.wikipedia.org/wiki/Bad_Apple!!">Credits of the Song & Video</a></h2>
|
23 |
<video controls autoplay>
|
24 |
<source src="bad-apple.mp4" type="video/mp4">
|
25 |
</video>
|