Update chat.html
Browse files
chat.html
CHANGED
|
@@ -52,6 +52,19 @@
|
|
| 52 |
font-size: 14px;
|
| 53 |
color: #888;
|
| 54 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
</style>
|
| 56 |
</head>
|
| 57 |
<body>
|
|
@@ -64,12 +77,9 @@
|
|
| 64 |
<a class="button" href="#" onclick="openLink('speech-to-text.html')">Speech to Text</a>
|
| 65 |
|
| 66 |
<!-- Correctly placed iframe -->
|
| 67 |
-
<iframe
|
| 68 |
-
src="https://severian-anima-7b-biomimicry-llm.hf.space"
|
| 69 |
-
|
| 70 |
-
width="850"
|
| 71 |
-
height="450">
|
| 72 |
-
</iframe>
|
| 73 |
|
| 74 |
<footer>
|
| 75 |
<p>©️ ANIMA</p>
|
|
|
|
| 52 |
font-size: 14px;
|
| 53 |
color: #888;
|
| 54 |
}
|
| 55 |
+
/* Style for the iframe container */
|
| 56 |
+
.iframe-container {
|
| 57 |
+
display: flex;
|
| 58 |
+
justify-content: center;
|
| 59 |
+
align-items: center;
|
| 60 |
+
height: 450px; /* You can adjust this to your preference */
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
iframe {
|
| 64 |
+
border: none; /* Optional: removes the default border */
|
| 65 |
+
width: 850px; /* Your specified width */
|
| 66 |
+
height: 450px; /* Your specified height */
|
| 67 |
+
}
|
| 68 |
</style>
|
| 69 |
</head>
|
| 70 |
<body>
|
|
|
|
| 77 |
<a class="button" href="#" onclick="openLink('speech-to-text.html')">Speech to Text</a>
|
| 78 |
|
| 79 |
<!-- Correctly placed iframe -->
|
| 80 |
+
<div class="iframe-container">
|
| 81 |
+
<iframe src="https://severian-anima-7b-biomimicry-llm.hf.space"></iframe>
|
| 82 |
+
</div>
|
|
|
|
|
|
|
|
|
|
| 83 |
|
| 84 |
<footer>
|
| 85 |
<p>©️ ANIMA</p>
|