index.html 696 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Document</title>
  7. <style>
  8. body {
  9. padding: 10px;
  10. }
  11. input {
  12. width: 100%;
  13. margin-bottom: 5px;
  14. font-size: 20px;
  15. }
  16. button {
  17. width: calc(100% + 4px);
  18. font-size: 20px;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <input id="inputNick" type="text" placeholder="nick" />
  24. <input id="inputMessage" type="text" placeholder="message" />
  25. <button id="btn">Отправить</button>
  26. <div id="chat"></div>
  27. <script src="js.js"></script>
  28. </body>
  29. </html>