text-chat/static/index.html

20 lines
418 B
HTML
Raw Normal View History

2022-11-26 15:28:11 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
2022-12-03 14:56:15 +00:00
<link rel="stylesheet" href="styles.css" />
2022-11-26 15:28:11 +00:00
<script src="/socket.io/socket.io.js"></script>
<script defer src="script.js"></script>
</head>
<body>
<div id="chat"></div>
2022-12-03 14:56:15 +00:00
<chatinput>
<input id="input" type="text" />
<button id="send">Send</button>
</chatinput>
2022-11-26 15:28:11 +00:00
</body>
</html>