index.html 624 B

1234567891011121314151617
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Document</title>
  9. </head>
  10. <body>
  11. <input type="text" id="nick" placeholder="nick" style="width: 100%;font-size: 2em"><br>
  12. <input type="text" id="msg" placeholder="message" style="width: 100%;font-size: 2em"><br>
  13. <button id="send" style="width: 100%;font-size: 2em">Send</button>
  14. <div id="chat"></div>
  15. </body>
  16. <script src="js/js.js"></script>
  17. </html>