1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <div class="wrapper" style="display: flex; flex-direction: column">
-
- <input id="inputName" type="text" placeholder="Enter a name" style="align-items: center; min-height: 50px; font-size: 20px;">
-
- <input id="inputMsg" type="text" placeholder="Enter a message" style="align-items: center; min-height: 50px; font-size: 20px;">
-
- <button id="btn" style="align-items: center; min-height: 50px; font-size: 20px;">Send</button>
- </div>
- <div id="chat"></div>
- <script src="index.js"></script>
- </body>
- </html>
|