12345678910111213141516171819 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width">
- <title>CHAT</title>
- <link href="index.css" rel="stylesheet" type="text/css" />
- <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
- </head>
- <body>
- <input type='text' id='nick' placeholder='nick'>
- <input type='text' id='msg' placeholder='message'>
- <button id='send'>Send</button>
- <div id='chat'>
- </div>
- <script src="index.js"></script>
- </body>
- </html>
|