2018-02-18 01:30:12 +00:00
|
|
|
<!--document declaration. tells the browser which version of html this script uses-->
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2018-02-18 01:28:11 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
2018-02-18 01:30:12 +00:00
|
|
|
<title><?php echo $page_title; ?></title>
|
|
|
|
<link rel="stylesheet" href="includes/style.css" type="text/css" media="screen" />
|
2018-02-18 01:28:11 +00:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-02-18 01:30:12 +00:00
|
|
|
<div id="header">
|
|
|
|
<h1>Heading of Your Website</h1>
|
|
|
|
<h2>catchy slogan...</h2>
|
|
|
|
</div>
|
|
|
|
<div id="navigation">
|
|
|
|
<ul>
|
|
|
|
<li><a href="index.php">Home Page</a></li> <!-- hyperlinks to pages within the site -->
|
|
|
|
<li><a href="ClassRoster.php">Class Roster</a></li>
|
|
|
|
<li><a href="employee.php">New Employee Register</a></li>
|
|
|
|
<li><a href="grade.php">Course Grade</a></li>
|
|
|
|
<li><a href="search.php">Search People</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div id="content"><!-- Start of the page-specific content. -->
|
|
|
|
<!-- Script 9.1 - header.html -->
|