Ciao a tutti

ho questo codice
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  <script>
  $(document).ready(function(){
    
    $("button").click(function () {
      $("p").show("slow");
    });

  });
  </script>
  <style>
  p { background:yellow; }
  </style>
</head>
<body>
  <button>Show it</button>
  <p style="display: none">Hello</p>
</body>
</html>

volevo sapere come far per inserire un campo form con una textarea al posto della scritta hello, è possile?

è inoltre possibile richiamre una pagina esterna sempre al posto della scritta hello?