12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title> Chat </title>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <div class="container">
- <h2>Simple Chat</h2>
- <div class="wrapper">
- <input type="text" id='nickname'>
- <label for="nickname">Enter NickName</label>
- <div>
- <input type="text" id='message'>
- <label for="nickname">Enter your message</label>
- <button class='btn'>Send message</button>
- </div>
- </div>
- <div id="answer"></div>
- </div>
- <script src="script.js"></script>
- </body>
- </html>
|