<hgroup>
태그 사용가능<article> contents <address> <a href="mailto:smaple@example.com">name</a> </address> </article>
<article> ...contents... <time datetime="2009-10-05" pubdate>10월 5일</time> </article>
<figure> <img src="./figure.jpg" alt="figure image" /> <figcaption> This is a figure</figcaption> </figure>
~HTML <article> 본문. <section> <article> 댓글. </article> <article> 댓글2. </article> </section> </article>
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>beonit</title> </head> <body> <h1> body header </h1> <section> <h2> section header </h2> <blockquote> <h3>block section</h3> <section> section content </section> </blockquote> <section> second section </section> </section> <footer> beonit </footer> <aside> test aside </aside> </body> </html>