Octonauts Wiki

<!DOCTYPE html> <html lang="en">

   <head>
       <meta charset="utf-8" />
       <title>Tuts+ Chat Application</title>
       <meta name="description" content="Tuts+ Chat Application" />
       <link rel="stylesheet" href="style.css" />
   </head>
   <body>
           <form name="message" action="">
               <input name="usermsg" type="text" id="usermsg" />
               <input name="submitmsg" type="submit" id="submitmsg" value="Send" />
           </form>
       <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
       <script type="text/javascript">
           // jQuery Document
           $(document).ready(function () {});
       </script>
   </body>

</html>