daily-examples/prebuilt/chat-overlay/index.html

20 lines
625 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>fullscreen embedded prebuilt with chat overlay</title>
<link rel="stylesheet" href="main.css">
</head>
<body onload="setup()">
<aside id="chatBox" class="hidden">
<div id="chatBoxTexts"></div>
<input id="chatBoxInput" type="text">
<button id="chatBoxButton">➡️</button>
</aside>
</body>
<script crossorigin src="https://unpkg.com/@daily-co/daily-js"></script>
<script src="main.js"></script>
</html>