summaryrefslogtreecommitdiff
path: root/example/index.html
blob: 2fcb129a118cd51727688a8de6bb9df96025dbb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="author" content="Chris Hiszpanski">
    <script src="adapter-latest.js"></script>
    <script src="index.js"></script>
    <style>
      body {
        font-family: sans-serif;
        text-align: center;
      }
      video {
        background: black;
        width: 80%;
      }
    </style>
    <title>TinyRTC Demo</title>
  </head>
  <body>
    <h1>TinyRTC Demo</h1>
    <video autoplay controls muted playsinline id="remoteVideo"></video>
  </body>
</html>