(page) REDIGERET 2 February 2010 • by admin

Template skabelon

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type"
	content="text/html; charset=utf-8" />
<title>--</title>
<link href="default.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="page">
	<div id="header"> 
	</div>	<!--end header-->
	<div id="content">
		<div class="post">
			<h2 >titlel</h2>
			<p>Har du hørt..</p>
		</div>
		<div class="post"></div>
		<div class="post"></div>
	</div>	<!--end content-->
	<div id="sidebar">
		<ul>
			<li><a href="#">link1</a></li>
			<li><a href="#">link2</a></li>
		</ul>
	</div>	<!--end sidebar-->
	<div id="footer"> 
	</div>	<!--end footer-->
</div><!--end page-->
</body>
</html>
/*Sæt generelle font-egenskaber for dokumentet*/
body {
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: 12px;
	line-height: 150%;
	margin: 0px;
	padding: 0px;
	background-color: #4a0b01;
}
/*Neutraliser vigtigste browser-font-forskelle*/
h1, h2, h3, p, ul, ol {
	margin: 0;
	padding: 10px 20px;
}
#page {
	background-color: #999;
	width: 800px;
	margin:auto;
}
#header {
	min-height: 100px;
	background-color: #78B;
}
#content {
	min-height: 300px;
	background-color: #FFF;
	width: 600px;
	float:left;
}
.post {
}
#sidebar {
	min-height: 80px;
	background-color: #FD6;
	margin-left: 600px;
}
#footer {
	min-height: 40px;
	background-color: #D44;
	clear:both;
}