index.html 381 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>HW13</title>
  6. <link rel="stylesheet" href="style.css">
  7. </head>
  8. <body>
  9. <input type='text' id='nick' placeholder="nick" />
  10. <input type="text" id="message" placeholder="message">
  11. <button id='send'>Send</button>
  12. <div id='chat'></div>
  13. <script src="main.js"></script>
  14. </body>
  15. </html>