1234567891011121314151617 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=\, initial-scale=1.0">
- <link rel="stylesheet" href="css/style.css">
- <title>HW14</title>
- </head>
- <body>
- <input type="text" id="nicknameBox" placeholder="Enter your nickname">
- <input type="text" id="messageBox" placeholder="Enter your message">
- <button type="submit" id="buttonBox"></button>
- <span id="chatBox"></span>
- <script src='js/main.js'></script>
- </body>
- </html>
|