Barebones xHTML and CSS template pages
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>XHTML TEMPLATE</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="description" content="THIS IS A TEMPLATE XHTML PAGE" /> <link rel="stylesheet" href="main.css" type="text/css" media="screen" /> <!-- <script type="text/javascript" src="prototype.js"> </script> --> <script type="text/javascript" language="JavaScript"><!-- <![CDATA[ ]]> //--></script> </head> <body> <div id="container"> </div> </body> </html>
This is the accomponying CSS:
body { font-family :Verdana, Arial, Sans; font-size :76%; } div#container { font-size :1.0em; }