-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 835 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
<!doctype html>
<html>
<head>
<title>ChatTab</title>
<link href="client/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="user-count">
# users on this site:
<strong><span id="num-users"></span></strong>
</div>
<div id="chat"></div>
<form action="">
<input id="m" autocomplete="off" autofocus="autofocus"/><button>Send</button>
</form>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.1.1/socket.io.dev.js"></script>
<script src="https://code.jquery.com/jquery-1.11.1.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="client/dependencies/moment-timezone-with-data.js"></script>
<script src="client/main.js" type="text/javascript"></script>
</body>
</html>