index.html 846 B

1234567891011121314151617181920212223242526
  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. <meta http-equiv="X-UA-Compatible" content="chrome=1"/>
  7. <head>
  8. <title>WebRTC</title>
  9. <link type="text/css" href="/style.css" rel="stylesheet"></link>
  10. <script src="/webrtc.io.js"></script>
  11. </head>
  12. <body onload="init()">
  13. <div id="videos">
  14. <video controls muted="muted" id="you" class="flip" autoplay width="263" height="200" style="position: absolute; left: 0px; bottom: 0px;"></video>
  15. </div>
  16. <div id="chatbox">
  17. <div id="messages"></div>
  18. <input id="chatinput" type="text" placeholder="Message:"/>
  19. </div>
  20. <div class="buttonBox">
  21. <div id="hideShowMessages" class="button chat">chat</div>
  22. <div id="newRoom" class="button room">&clubs;</div>
  23. </div>
  24. <script src="/script.js"></script>
  25. </body>
  26. </html>