| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>CodeNinja OpenChat</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <div id="chat-container"> | |
| <h2>CodeNinja Chat</h2> | |
| <div id="chat-box"></div> | |
| <input type="text" id="user-input" placeholder="Type your message here..." autofocus> | |
| <button id="send-button">Send</button> | |
| </div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> | |