<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Example document</title>
</head>
<body>
<p>Example paragraph</p>
</body>
</html>
Safari Web Content Guide: Configuring the Viewport
<article>
<header>Article Header</header>
<p>Content</p>
<footer>© 2012</footer>
</article>
Contained by article, section or other content flow.
<article>
<p>Main content...</p>
<aside>Content related to but not a part of the main article content</aside>
</article>
<audio src="..." autobuffer autoplay controls></audio>
<canvas width="1920" height="1080"></canvas>
details
Element<details open>
<summery>Detail Summery</summery>
The rest of the content shown when `open`.
</details>
<figure>
<dt>Figure Caption</dt>
<dd>
<img src="..." alt="graphic"/>
Figure data/info
</dd>
</figure>
Contained by document, article or section
<header>
<hgroup>
<h1>Major Heading</h1>
<h2>Subheading</h2>
</hgroup>
<h3>Tagline</h3>
</header>
Text mark or highlight.
<meter min="0" max="100" value="40">40%</meter>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
</ul>
</nav>
<form id="user_calc">
<input type="text" value="calculation" value="30" />
</form>
<output form="user_calc" for="calculation" name="total"></output>
<progress max="1" value=".69">69%</progress>
A thematic grouping of content such as a chapter.
Used within audio or video elements to denote multiple source options.
<audio>
<source type="audio/ogg" src="quotes.ogg"></source>
<source type="audio/mp3" src="quotes.mp3"></source>
</audio>
<time datetime="2012-03-24T01:55-08:00" pubdate>March 24th 2012 1:55am</time>
<video width="1920" height="1080" poster="video.jpg" autobuffer autoplay controls loop>
<source type="video/ogg" src="video.ogv"></source>
<source type="video/mp4" src="video.mp4"></source>
</video>