summaryrefslogtreecommitdiff
path: root/dist/index.html
blob: 8022ee5c590d7be5afa3545bcf32802c37497013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<head>
	<title>chatroom</title>
	<script src="index.js"></script>
	<link rel="stylesheet" href="default.css">

</head>

<body>
	<div class="header">
		<h1>welcome to the chat</h1>
		<label for="nickbox">nickname: </label>
		<input id="nickbox" type="text" >
	</div>
	<div class="main">
		<div id="messages">
		</div>
	</div>
	<div class="footer">
		<input id="msgbox" type="text" placeholder="send a message">
	</div>
</body>