| 1234567891011121314151617181920212223 | <!doctype html><html>    <head>		<meta charset="UTF-8">        <title>WebRTC Example</title>		<link rel="stylesheet" href="style.css">        <script src="script.js"></script>    </head>    <body>        <h1>WebRTC Example</h1>        <h2>Local ID</h2>        <p id="localId"></p>        <h2>Send an offer through signaling</h2>		<input type="text" id="offerId" placeholder="remote ID" disabled>		<input type="button" id="offerBtn" value="Offer" disabled>		<br>        <h2>Send a message through DataChannel</h2>        <input type="text" id="sendMsg" placeholder="message" disabled>        <input type="button" id="sendBtn" value="Send" disabled>        <br>    </body></html>
 |