1
2<html lang="en">
3 <head>
4 <meta charset="utf-8" />
5
6 <title>Tuts+ Chat Application</title>
7 <meta name="description" content="Tuts+ Chat Application" />
8 <link rel="stylesheet" href="style.css" />
9 </head>
10 <body>
11 <div id="wrapper">
12 <div id="menu">
13 <p class="welcome">Welcome, <b></b></p>
14 <p class="logout"><a id="exit" href="#">Exit Chat</a></p>
15 </div>
16
17 <div id="chatbox"></div>
18
19 <form name="message" action="">
20 <input name="usermsg" type="text" id="usermsg" />
21 <input name="submitmsg" type="submit" id="submitmsg" value="Send" />
22 </form>
23 </div>
24 <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
25 <script type="text/javascript">
26 // jQuery Document
27 $(document).ready(function () {});
28 </script>
29 </body>
30</html>
31