12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- <style>
- body {
- padding: 10px;
- }
- input {
- width: 100%;
- margin-bottom: 5px;
- font-size: 20px;
- }
- button {
- width: calc(100% + 4px);
- font-size: 20px;
- }
- </style>
- </head>
- <body>
- <input id="inputNick" type="text" placeholder="nick" />
- <input id="inputMessage" type="text" placeholder="message" />
- <button id="btn">Отправить</button>
- <div id="chat"></div>
- <script src="js.js"></script>
- </body>
- </html>
|