- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.html
More file actions
Latest commit
17 lines (16 loc) · 474 Bytes
/
Copy pathclient.html
File metadata and controls
17 lines (16 loc) · 474 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<title>WebSocket Chat</title>
<linkrel="stylesheet" href="client.css">
</head>
<body>
<h1>WebSocket Chat</h1>
<ulid="messageList"></ul>
<inputtype="text" id="messageInput" placeholder="Type your message">
<buttononclick="sendMessage()">Send</button>
<scriptsrc="client.js"></script>
</body>
</html>