XHTML Skeleton document

You can use the XHTML and CSS source code below as a starting point for your own XHTML-valid websites.

index.html

<!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">
<head>
    <title>Website title goes here</title>
    <link rel="stylesheet" href="style.css" type="text/css" media="all" />
</head>
<body>
    <!-- Website content goes here -->
</body>
</html>

style.css

/*
    Basic Stylesheet -
    This is just a starting point - adjust as appropriate
*/

/* Define the style for the body tag */

body {
    /* Set the font-family to Verdana or a sans-serif alternative */
    font-family: Verdana, Arial, helvetical, sans-serif;
    /* Set the background-colour to white */
    background-color:#FFFFFF;
    /* Set the text color to black */
    color:#000000;    
}