1234567891011121314151617181920212223242526272829303132 |
- <!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">
- <link rel="stylesheet" href="./style.css">
- <title>hw12-promiseChat</title>
- </head>
- <body>
- <h1>promise chat client</h1>
- <div id="msgField"></div>
- <div id='formContainer'>
- <input
- id="nickbox"
- type="text"
- placeholder="nickname"
- >
- <br>
- <textarea
- name="messagebox"
- id="msgbox"
- cols="30"
- rows="5"
- placeholder="message"
- ></textarea>
- <br>
- <button id="sendBtn">Send</button>
- </div>
- <script src="./script.js"></script>
- </body>
- </html>
|