mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-22 15:15:28 +00:00
15 lines
439 B
HTML
15 lines
439 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Web Rtc Example</title>
|
|
</head>
|
|
<body>
|
|
<h1>Web Rtc</h1>
|
|
<button id="createConnectionBtn">Create Connection</button>
|
|
<br/>
|
|
<textarea id="sendData" placeholder="Send a message" style="width: 500px; height: 50px"></textarea>
|
|
<br/>
|
|
<button id="sendDataBtn">Send Data</button>
|
|
<script src="/script.js"></script>
|
|
</body>
|
|
</html> |