blob: fe4cb3c38e2b10a44972e4fd8ce87669cd079dfe [file] [log] [blame]
Jorge E. Moreiraa18ff1a2019-12-17 18:20:56 -08001<html>
2 <head>
3 <title>My WebRTC Playground</title>
4
5 <link rel="stylesheet" type="text/css" href="style.css" >
6 </head>
7
8 <body>
9 <button id="receiveButton">Receive Media</button>
10 <hr>
11 <section class="noscroll">
12 <div class="one" >
13 <video id="video" autoplay controls width="360" height="720" style="touch-action:none" ></video>
14 </div>
15
16 <div class="two" >
17 <textarea id="logcat" rows="55" cols="120" readonly >
18 </textarea>
19 </div>
20 </section>
21
22 <script src="js/receive.js"></script>
23 <script src="js/logcat.js"></script>
24 </body>
25
26</html>
27