<!-- p tag examples -->
<!-- Darren Grant, 4th October 1997 -->

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">

<html>	  	    	      		<!-- start of HTML document -->

<head>	  	    	      		<!-- document header -->
  <title>My First Homepage</title>	<!-- title of page -->
</head>	  	    	      		<!-- end of header -->

<body>	  	    	      		<!-- start of main body of text -->

<p align="center">  	      		<!-- new, centred, paragraph -->
  Welcome to My First Homepage...
</p>

<p>This is the main body text. If you examine the source code, you will see
that this text is not indented as it forms the main body of the text in the
page. It does not need a closing p tag either.

</body>	  	    	      		<!-- end of the main text -->

</html>	  	    	      		<!-- end of the HTML document -->
