index.html 358 B

1234567891011121314
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. </head>
  7. <body>
  8. <input type="text" id="nick" placeholder="имя">
  9. <p><input type="text" id="message" placeholder="сообщение" style="height: 60px"></p>
  10. <button id="send">send</button>
  11. <div id="chat"></div>
  12. </body>
  13. <script src="index.js"></script>
  14. </html>