Spaces:
Runtime error
Runtime error
Create index.html
Browse files- index.html +39 -0
index.html
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Embedded Chat Assistant</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
display: flex;
|
11 |
+
justify-content: center;
|
12 |
+
align-items: center;
|
13 |
+
height: 100vh;
|
14 |
+
margin: 0;
|
15 |
+
background-color: #f0f0f0;
|
16 |
+
}
|
17 |
+
.chat-container {
|
18 |
+
width: 80%;
|
19 |
+
max-width: 600px;
|
20 |
+
height: 80%;
|
21 |
+
background-color: #fff;
|
22 |
+
border: 1px solid #ccc;
|
23 |
+
border-radius: 10px;
|
24 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
25 |
+
overflow: hidden;
|
26 |
+
}
|
27 |
+
iframe {
|
28 |
+
width: 100%;
|
29 |
+
height: 100%;
|
30 |
+
border: none;
|
31 |
+
}
|
32 |
+
</style>
|
33 |
+
</head>
|
34 |
+
<body>
|
35 |
+
<div class="chat-container">
|
36 |
+
<iframe src="https://hf.co/chat/assistant/67a6625a4920899151f03f9c"></iframe>
|
37 |
+
</div>
|
38 |
+
</body>
|
39 |
+
</html>
|