3D_AI_Avatar / frontend /index.html
banao-tech's picture
Update frontend/index.html
42a0abe verified
raw
history blame contribute delete
643 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>AI Avatar</title>
<link rel="stylesheet" href="style.css"/>
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.160.0/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.160.0/examples/jsm/"
}
}
</script>
</head>
<body>
<div id="layout">
<div id="viewer"></div>
<div id="panel">
<textarea id="text" placeholder="Type something…"></textarea>
<button id="speak">Speak</button>
</div>
</div>
<script type="module" src="app.js"></script>
</body>
</html>