1.	<?php // Script 8.4 - index.php
2.	/* This is the home page for this site. 
3.	It uses templates to create the layout. */
4.	
5.	// Include the header:
6.	require('templates/header.html');
7.	// Leave the PHP section to display lots of HTML:
8.	?>
9.	
10.	<h1>Welcome to the Elliott Smith Fan Club!</h1>
11.	<p>Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. </p>
12.	<p>Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. </p>
13.	
14.	<?php // Return to PHP.
15.	require('templates/footer.html'); // Include the footer.
16.	?>