socket.io-example/static/index.html

18 lines
346 B
HTML
Raw Normal View History

2023-03-04 17:02:39 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<script src="/socket.io/socket.io.js"></script>
<script defer src="index.js"></script>
</head>
<body>
<input type="text" id="text" />
<button id="send">Send</button>
<br />
<div id="messages"></div>
</body>
</html>