Update index.html
Browse files- index.html +26 -19
index.html
CHANGED
@@ -1,19 +1,26 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
<title>Three.js Interface</title>
|
7 |
+
<link rel="stylesheet" href="style.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<canvas id="bg"></canvas>
|
11 |
+
|
12 |
+
<main class="content-wrapper">
|
13 |
+
<div class="iframe-container">
|
14 |
+
<iframe
|
15 |
+
src="https://huggingface.co/datasets/interstellarninja/hermes_reasoning_tool_use/embed/viewer/default/train?row=1"
|
16 |
+
frameborder="0"
|
17 |
+
width="100%"
|
18 |
+
height="560px"
|
19 |
+
></iframe>
|
20 |
+
</div>
|
21 |
+
</main>
|
22 |
+
|
23 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
|
24 |
+
<script src="script.js"></script>
|
25 |
+
</body>
|
26 |
+
</html>
|