index.html 780 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en-US">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <head>
  7. <title>David</title>
  8. <link type="text/css" href="/style.css" rel="stylesheet"></link>
  9. <script src="/webrtc.io.js"></script>
  10. </head>
  11. <body onload="init()">
  12. <div id="videos">
  13. <video muted="muted" id="you" class="flip" autoplay width="263" height="200" style="position: absolute; left: 0px; bottom: 0px;"></video>
  14. </div>
  15. <div id="chatbox">
  16. <div id="messages"></div>
  17. <input id="chatinput" type="text" placeholder="Message:"/>
  18. </div>
  19. <div class="buttonBox">
  20. <div id="hideShowMessages" class="button chat">chat</div>
  21. <div id="newRoom" class="button room">&clubs;</div>
  22. </div>
  23. <script src="/script.js"></script>
  24. </body>
  25. </html>