index.html 577 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>CHAT</title>
  7. <link href="index.css" rel="stylesheet" type="text/css" />
  8. <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
  9. </head>
  10. <body>
  11. <input type='text' id='nick' placeholder='nick'>
  12. <input type='text' id='msg' placeholder='message'>
  13. <button id='send'>Send</button>
  14. <div id='chat'>
  15. </div>
  16. <script src="index.js"></script>
  17. </body>
  18. </html>