File size: 536 Bytes
4f737fe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Chat System</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <div class="chat-container">
    <div class="chat-messages" id="messages"></div>
    <div class="chat-input">
      <input type="text" id="nameInputBox" placeholder="Your Name">
      <input type="text" id="messageInputBox" placeholder="Type a message...">
      <button onclick="postMessage()">Send</button>
    </div>
  </div>

  <script src="script.js"></script>
</body>
</html>