<head>
<meta charset="UTF-8">
<title>HTML5 Web Page Layout</title>
<style type="text/css">
body{
font: 12px verdana, sans-serif;
margin: 0px;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>HTML5 LEARNING</h1>
</header>
<div class="wrapper">
<div class="content">
<section>
<h2>Welcome to our site</h2>
<p>Here you will learn to create websites...</p>
</section>
</div>
</div>
<footer>
<p>copyright © LEARNING.com</p>
</footer>
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">