SouthSpencerQA / index.html
acecalisto3's picture
Update index.html
b3cf122 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Embedded Chat Assistant</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
margin: 0;
background-color: #f0f0f0;
}
.chat-container {
width: 80%;
max-width: 600%;
height: 80%;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<div class="chat-container">
<iframe src="https://hf.co/chat/assistant/67a6625a4920899151f03f9c"></iframe>
</div>
</body>
</html>