This commit is contained in:
Arthur Beck 2025-04-11 18:15:06 +00:00
parent 41868ec7b3
commit 23286d59ef
6 changed files with 336 additions and 0 deletions

16
index.html Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>web chat</title>
</head>
<body>
<div id="chat-body"></div><br>
<input type="text" name="chat-input" id="chat-input" placeholder="Text...">
<button id="send">Send</button>
<script src="./client.js"></script>
</body>
</html>