123456789101112131415161718 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>HW13</title>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <input type='text' id='nick' placeholder="nick" />
- <input type="text" id="message" placeholder="message">
- <button id='send'>Send</button>
- <div id='chat'></div>
- <script src="main.js"></script>
- </body>
- </html>
|