20 lines
510 B
HTML
20 lines
510 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WS-Chat</title>
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
<body>
|
|
<div id="message-log"></div>
|
|
|
|
<form id="publish-form">
|
|
<input type="text" id="message-input" placeholder="Type a message..." autocomplete="off" autofocus>
|
|
<button type="submit">Send</button>
|
|
</form>
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|