peerwebchat/index.html
2025-04-11 18:15:06 +00:00

16 lines
No EOL
393 B
HTML

<!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>