index.html 656 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Talking Bot</title>
  6. <script src="js/app.js" defer></script>
  7. <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10. <div id="parrot">
  11. <div id="parent">
  12. <div id="help">
  13. <p id="help">
  14. Hold Call key and talk and wait up to
  15. ~30 seconds for a response.
  16. </p>
  17. </div>
  18. <img src="icon.svg">
  19. </div>
  20. <canvas></canvas>
  21. <div id="user"></div>
  22. <div id="footer">
  23. <b>About</b>
  24. </div>
  25. </div>
  26. </body>
  27. </html>