<!DOCTYPE html>
<html>
<head>
  <title>Two-Person Chat</title>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
  <div class="container">
    <h1>Chat Here </h1>
    <div id="chatbox"></div>
    <input type="text" id="message" placeholder="Type your message...">
    <button id="send">Send</button>
  </div>

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