You are on page 1of 1

Sample HTML

<!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" /> <title>Simple left column layout</title> <link rel="stylesheet" href="css/main.css" type="text/css" /> <!--[if lte IE 6]> <link rel="stylesheet" href="css/ie.css" type="text/css" /> <![endif]--> </head> <body> <div class="container"> <div class="header"> </div> <div class="navigation"> <ul> <li><a href="#">Home</a></li> <li><a href="#">Products</a></li> <li><a href="#">About us</a></li> <li><a href="#">Contact us</a></li> </ul> </div> <div class="content"> <p>Here is some text...</p> <a href="#">This is a link</a> </div> <div class="footer"> <p>footer</p> </div> </div> </body> </html>

You might also like