How is this:
Code:
<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Page</title>
</head>
<body>
<div id="header">
<h1>Page</h1>
<ul>
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
<li><a href="#">Item 3</a></li>
</ul>
</div>
<div class="section">
<div class="article">
<h2>Article 1</h2>
<p>Hello World</p>
</div>
<div class="article">
<h2>Article 2</h2>
<p>Hello World</p>
</div>
</div>
<div id="footer">
<p>Copyright 2012</p>
</div>
</body>
</html>
Any stricter or cleaner than this:
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Page</title>
</head>
<body>
<header>
<h1>Page</h1>
<ul>
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
<li><a href="#">Item 3</a></li>
</ul>
</header>
<section>
<article>
<h2>Article 1</h2>
<p>Hello World</p>
</article>
<article>
<h2>Article 2</h2>
<p>Hello World</p>
</article>
</section>
<footer>
<p>Copyright 2012</p>
</footer>
</body>
</html>
Bookmarks