-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (28 loc) · 1.03 KB
/
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
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- client library for socket.io -->
<script src="/socket.io/socket.io.js"></script>
<script src="jquery-2.1.4.js"></script>
<link rel="stylesheet" href="style.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="pure-css.css" media="screen" title="no title" charset="utf-8">
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<title>My Chat App</title>
</head>
<body>
<nav class="navbar navbar-default">
<a class="navbar-brand">Real-time WebSocket Chat Room</a>
</nav>
<section class="col-md-10 col-md-offset-1">
<div class="well-lg">
<ul></ul>
</div>
<form>
<input type="text" placeholder="Enter your message" id="message" value="">
<input class="btn btn-primary btn-block"type="button" id="button" name="button" value="Chat!">
</form>
</section>
<script src="app.js"></script>
</body>
</html>