Using jQuery to add HTML element doesn't work

Using jQuery to add HTML element doesn't work

Hello everyone: 

I am trying to add a paragraph by using jQuery, but the paragraph won't display in the browser. 
Please review my code and give me some feedback on why the paragraph didn't show. Thanks!

  1. <html>
  2.  
  3. <head>
  4.   <title>hello world</title>
  5.   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  6.  
  7.   
  8.   <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" ></script>
  9.  <script language="JavaScript" type="text/javascript">
  10.   <!--
  11.   $(document).ready(function(){
  12.   if($('<p>this is a new paragraphy</p>').is(':visible'))
  13.   {
  14.     $('p').show();
  15.   }
  16.   });
  17.   //-->
  18.  </script>
  19. </head>

  20. <body>
  21.   
  22. </body>
  23. </html>