index.html 633 B

12345678910111213141516171819
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Web Rtc Example</title>
  5. </head>
  6. <body>
  7. <h1>Web Rtc</h1>
  8. <button id="createConnectionBtn">Create Connection</button>
  9. <br/>
  10. <textarea id="remoteDesc" placeholder="Enter remote JSON" style="width: 500px; height: 200px"></textarea>
  11. <br/>
  12. <button id="connectRemote">Connect</button>
  13. <br/>
  14. <textarea id="sendData" placeholder="Send a message" style="width: 500px; height: 50px"></textarea>
  15. <br/>
  16. <button id="sendDataBtn">Send Data</button>
  17. <script src="/script.js"></script>
  18. </body>
  19. </html>