forked from coder/websocket
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
25 lines (24 loc) · 829 Bytes
/
index.html
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 lang="en-CA">
<head>
<meta charset="UTF-8" />
<title>Video Chat Example</title>
<meta name="viewport" content="width=device-width" />
<link href="https://unpkg.com/sanitize.css" rel="stylesheet" />
<link href="https://unpkg.com/sanitize.css/typography.css" rel="stylesheet" />
<link href="https://unpkg.com/sanitize.css/forms.css" rel="stylesheet" />
<link href="/index.css" rel="stylesheet" />
</head>
<body>
<div id="root">
<div id="message-log"></div>
<div id="publish-form-container">
<form id="publish-form">
<input name="message" id="message-input" type="text" />
<input value="Submit" type="submit" />
</form>
</div>
</div>
<script type="text/javascript" src="/index.js"></script>
</body>
</html>