index.html 439 B

123456789101112131415
  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="sendData" placeholder="Send a message" style="width: 500px; height: 50px"></textarea>
  11. <br/>
  12. <button id="sendDataBtn">Send Data</button>
  13. <script src="/script.js"></script>
  14. </body>
  15. </html>