<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"/>
<meta name="description" content=""/>
<link rel="shortcut icon" href="img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
<title>Test for Red & White</title>
</head>
<body>
<div id="container">
<h1>Red & White Testing Testing</h1>
<ul id="navigation">
<li><a href="/">Home</a></li>
<li><a href="/>About</a></li>
<li><a href="/">Contact</a></li>
<li><a href="/">Links</a></li>
</ul>
<div id="content">
<p>hello, usually i'd put in some lorem ipsum but I thought I'd help you out and write this instead</p>
<p>From top to bottom in this html document there is:</p>
<ul>
<li>Doctype - needed so that browsers can do stuff</li>
<li>all the header stuff - type, description (the bit under the title in google etc), favicon & link to stylesheet</li>
<li>body - this is where you'd set the default padding, margin, font and background colour (no widths here)</li>
<li>container - this is where you'd put the whole website centered, the content background colour etc.</li>
<li>the h1 - this is the header</li>
<li>navigation - a 'ul' is an unorderd list, just like this one, naming it means you can specifically edit it up</li>
<li>the li elements - there are each individual list point</li>
<li>main content and the sidebar divs are for having 2 columns</li>
</ul>
<p>There's also the footer but that's straight forward, I'll put comments on the CSS file too</p>
</div>
<div id="sidebar">
<p>*IMAGE GOES HERE USING THIS : < img src="image destination.jpg" alt="name the image" /> job done (no spaces)</p>
</div>
<div id="footer"
<p>copyright moi</p>
</div>
</div>
</body>
</html>