<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="html5.xsl" type="text/xsl" ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">

<head>
<meta charset="utf-8"/>
<title>HTML 5 XSLT</title>
<style>*{border:#eee solid 1px; margin:1em;}</style>
</head>

<body id="test">

<header>
<h1>page heading : h1</h1>
<nav>
<ul>
<li><a href="http://google.com">nav item 1</a></li>
<li><a href="http://google.com">nav item 2</a></li>
<li><a href="http://google.com">nav item 3</a></li>
</ul>
</nav>
</header>

<article>
<hgroup>
<h2>article heading : h2</h2>
<h3>article sub heading : h3</h3>
</hgroup>

<section>
<hgroup>
<h3>section heading : h3</h3>
<h4>section sub heading : h4</h4>
</hgroup>
<figure>
<legend>lenna</legend>
<img src="lenna.png" />
</figure>
<p>paragraph <a href="#aa">link</a></p>
</section>

<section>
<h3>section heading : h3</h3>
<figure>
<legend>table</legend>
<table>
<thead><tr><th>th</th><th>th</th></tr></thead>
<tbody><tr><td>td</td><td>td</td></tr></tbody>
</table>
</figure>
</section>

<footer>
<p>article footer</p>
</footer>

</article>

</body>

</html>
