Update index.html
Browse files- index.html +6 -1
index.html
CHANGED
@@ -5,6 +5,11 @@
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Icon Button Video Selector</title>
|
7 |
<style>
|
|
|
|
|
|
|
|
|
|
|
8 |
.icon-button {
|
9 |
cursor: pointer;
|
10 |
border: none;
|
@@ -18,7 +23,7 @@
|
|
18 |
</style>
|
19 |
</head>
|
20 |
<body>
|
21 |
-
<div>
|
22 |
<button class="icon-button" onclick="showVideo('https://huggingface.co/spaces/tonyassi/g/resolve/main/lucy/video1.mov')">
|
23 |
<img src="https://huggingface.co/spaces/tonyassi/g/resolve/main/icon/fish.png" alt="Fish Icon">
|
24 |
</button>
|
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Icon Button Video Selector</title>
|
7 |
<style>
|
8 |
+
.icon-container {
|
9 |
+
display: flex;
|
10 |
+
justify-content: center;
|
11 |
+
margin-top: 20px;
|
12 |
+
}
|
13 |
.icon-button {
|
14 |
cursor: pointer;
|
15 |
border: none;
|
|
|
23 |
</style>
|
24 |
</head>
|
25 |
<body>
|
26 |
+
<div class="icon-container">
|
27 |
<button class="icon-button" onclick="showVideo('https://huggingface.co/spaces/tonyassi/g/resolve/main/lucy/video1.mov')">
|
28 |
<img src="https://huggingface.co/spaces/tonyassi/g/resolve/main/icon/fish.png" alt="Fish Icon">
|
29 |
</button>
|