123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="en-ru">
- <html>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>HW-14 Chat</title>
- <link rel="stylesheet" href="style.css">
- <body>
- <div class="container">
- <h1 class="title">Welcome to Spam Chat</h1>
- <div class="form" id='form'>
- <input id='nick' type="text" placeholder="nickname" maxlength="12" value="🐼 MaksTravm 🐗">
- <textarea id="message" placeholder="Enter message"></textarea>
- <button id='btn'>Send</button>
- </div>
- <div class="history" id='historyChat'>
- </div>
- </div>
- <script src="main.js"></script>
- </body>
- </html>
|