lis-458-ol-php/includes/header.html

24 lines
1003 B
HTML

<!--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">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $page_title; ?></title>
<link rel="stylesheet" href="includes/style.css" type="text/css" media="screen" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<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 -->