Hi I am working on this page as an exercise. Until now I have always been able to nest div elements to obtain a better layout. With html 5 I cannot do it and I have to use a table. Can somebody tell me what is wrong with this code? Thanks a lot.
<html 5>
<head>
<title>Untitled</title>
<meta name="author" content="your name here">
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width">
<meta name="DESCRIPTION" content="Place description of page here">
<meta name="KEYWORDS" content="Place keywords or phrases here">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div class="outline">
<header>
<h1>Create a Website with HTML5</h1>
</header>
<nav>
<p><a href="index.html">Home</a>
<p><a href="page2.html">Page 2</a>
<p><a href="page3.html">Page 3</a>
<p><a href="page4.html">Page 4</a>
<p><a href="page5.html">Page 5</a>
<p><a href="page6.html">Page 6</a>
</nav>
<div id="main">
<div class="left_content"></div>
</div>
<footer>
<address>© Copyright 2012 All Rights Reserved www.yourdomain.com</address>
</footer>
</div>
</body>
</html>
.left_content {
width: 400px;
height: 350px;
position: absolute;
top: 200px;
left: 150px;
border: 1px solid black;
}