<head>
	<!-- ---------------------------------------------------------------------- -->
	<!-- The title component for the head component -->
	<title>Example 22-1. An example of the typical components of the head in a web page</title>
	<!-- ---------------------------------------------------------------------- -->

	<!-- ---------------------------------------------------------------------- -->

	<!-- The metadata component for the head component -->
	<meta http-equiv="content-type" content="text/html; charset=utf-8" />
	<!-- The rest of these <meta> elements should be considered optional -->
	<meta http-equiv="content-language" content="en" />
	<meta name="keywords" content="word1, word2, word3, wordn" />
	<meta name="description" content="This is the Example 22-1 metadata description." />
	<meta name="author" content="Anthony T. Holdener III [ath3] {anthony3@holdener.com}" />
	<meta name="copyright" content="Copyright (C) 1999 - 2007. Holdener.com." />
	<meta http-equiv="imagetoolbar" content="no" />
	<!-- ---------------------------------------------------------------------- -->

	<!-- ---------------------------------------------------------------------- -->
	<!-- The style definitions component for the head component -->
	<link type="text/css" rel="stylesheet" media="screen" href="include/css/screen.css" />
	<link type="text/css" rel="stylesheet" media="print" href="include/css/print.css" />
	<link type="text/css" rel="stylesheet" media="all" href="include/css/page_specific.css" />
	<!-- ---------------------------------------------------------------------- -->

	<!-- ---------------------------------------------------------------------- -->
	<!-- The scripting component for the head component -->
	<script type="text/javascript" src="include/js/prototype.js"> </script>
	<script type="text/javascript" src="include/js/scriptaculous.js"> </script>
	<script type="text/javascript" src="include/js/app_specific.js"> </script>
	<!-- ---------------------------------------------------------------------- -->
</head>