Next, we need to create menu.html . Once again, this must be valid HTML. The first half of the document is below.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"You will notice that I refer to 'base.css' here. Modularity is the key to manageability. Good practice holds that one should always keep one's design dynamics out of the HTML. You may recall that, in the PHP-Javascript-Python tutorial, it was important to keep form separate from function. Within form, it is important to keep design separate from structure. CSS takes care of design and lets HTML reflect the structure. If you do not know CSS, you should take the CSS course at About.com's Web Design site.
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<title></title>
<link rel="stylesheet" type="text/css" href="./base.css" />
</head>
<body>

