1234567891011121314151617 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <input type="text" name="" id="nickInput" placeholder="Enter your nickname"> <br>
- <input type="text" name="" id="msgInput" placeholder="Enter your message"> <br>
- <button type="submit" id="sendButton"></button>
- <div id="chat">
- </div>
- <script src="main.js"></script>
- </body>
- </html>
|