Chapter 16 - Header

Output
Source
<!doctype>
 <html>
 <head>
 	 <title><?php echo $title; ?></title>	
	 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 </head>
 <body> 
 	<div id="header">
		<h1>Your Website</h1>
	 	<h2>catchy slogan...</h2>
	</div>
	<div id="navigation">
	 	<ul>
    		<li><a href="index.php?chapter=16&amp;script=16.2">Add User</a></li>
      		<li><a href="index.php?chapter=16&amp;script=16.3">View Users</a></li>
      		<li><a href="index.php?chapter=16&amp;script=16.6">Delete User</a></li>
 	 	</ul>
	</div>
	<!-- Chapter 16 header.php -->
 	<!--	Start	of	the	page-specific	content.	-->