17 lines
412 B
HTML
17 lines
412 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WebSocket Client</title>
|
|
</head>
|
|
<body>
|
|
<h1>WebSocket Client</h1>
|
|
<input type="text" id="message" placeholder="Type a message">
|
|
<button id="send">Send</button>
|
|
<div id="messages"></div>
|
|
|
|
<script src="./script.js"></script>
|
|
</body>
|
|
</html>
|