-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (24 loc) · 932 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
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="ES6 Coding Test">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="index.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.0/socket.io.js"></script>
<title>ES6 Coding Test</title>
</head>
<body>
<div class="container">
<div id="messages" class="messages">
</div>
<div class="chat-controls">
<input id="nickname" class="nick-name" type="text" value="Guest"></input>
<input id="message" placeholder="Type here to chat" class="message" type="text"></input>
<button id="send" class="send">Send</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>