12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>Talking Bot</title>
- <script src="js/app.js" defer></script>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <div id="parrot">
- <div id="parent">
- <div id="help">
- <p id="help">
- Hold Call key and talk and wait up to
- ~30 seconds for a response.
- </p>
- </div>
- <img src="icon.svg">
- </div>
- <canvas></canvas>
- <div id="user"></div>
- <div id="footer">
- <b>About</b>
- </div>
- </div>
- </body>
- </html>
|