<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HTML5 Doctor &#187; Mike Robinson</title>
	<atom:link href="http://html5doctor.com/author/miker/feed/" rel="self" type="application/rss+xml" />
	<link>http://html5doctor.com</link>
	<description>helping you implement HTML5 today</description>
	<lastBuildDate>Tue, 27 Jul 2010 14:36:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>You can still use div</title>
		<link>http://html5doctor.com/you-can-still-use-div/</link>
		<comments>http://html5doctor.com/you-can-still-use-div/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 13:30:37 +0000</pubDate>
		<dc:creator>Mike Robinson</dc:creator>
				<category><![CDATA[Elements]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[semantics]]></category>

		<guid isPermaLink="false">http://html5doctor.com/?p=1853</guid>
		<description><![CDATA[
			
				
			
		
&#8220;Sorry, can you say that again?&#8221;, I hear you ask. Certainly: you can still use &#60;div&#62;! Despite HTML5 bringing us new elements like &#60;article&#62;, &#60;section&#62;, and &#60;aside&#62;, the &#60;div&#62; element still has its place. Let the HTML5 Doctor tell you why.

Status: Unchanged
In HTML 4, the &#60;div&#62; element was defined to be a generic element for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;source=html5doctor&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>&#8220;Sorry, can you say that again?&#8221;, I hear you ask. Certainly: you can still use <code>&lt;div&gt;</code>! Despite <abbr title="HyperText Markup Language">HTML</abbr>5 bringing us new elements like <code>&lt;article&gt;</code>, <code>&lt;section&gt;</code>, and <code>&lt;aside&gt;</code>, the <code>&lt;div&gt;</code> element still has its place. Let the <abbr>HTML</abbr>5 Doctor tell you why.</p>
<p><span id="more-1853"></span></p>
<h2>Status: Unchanged</h2>
<p>In <abbr>HTML</abbr> 4, the <code>&lt;div&gt;</code> element was defined to be a generic element for structuring a page. Although you can allude to the nature of its content by assigning <code>id</code> and <code>class</code> attributes with meaningful names, a <code>&lt;div&gt;</code> has almost no semantic meaning. <a href="http://dev.w3.org/html5/spec/Overview.html#the-div-element">The <abbr>HTML</abbr>5 definition</a>is basically the same as in <abbr>HTML</abbr> 4:</p>
<blockquote>
<p>The div element has no special meaning at all. It represents its children. It can be used with the class, lang, and title attributes to mark up semantics common to a group of consecutive elements.</p>
<p>  <footer><br />
    <cite><a href="http://dev.w3.org/html5/spec/Overview.html#the-div-element">W3C Specification</a></cite><br />
  </footer>
</p></blockquote>
<p><code>&lt;div&gt;</code> is literally a container for flow content*, a collection of (hopefully) more semantically marked-up content that may need to be grouped together. It lies at the opposite end of the semantic spectrum from the new <abbr>HTML</abbr>5 structural elements.</p>
<p><small>* For those who haven&#8217;t encountered this term before, <a href="http://dev.w3.org/html5/spec/Overview.html#flow-content-0">flow content</a> elements are the same as <abbr>HTML</abbr> 4&#8217;s block-level content elements.</small></p>
<h2><code>&lt;div&gt;</code> vs semantic elements</h2>
<p>The new semantic elements (<code>&lt;article&gt;</code>, <code>&lt;section&gt;</code>, and friends) justifiably capture a lot of <code>&lt;div&gt;</code>&#8217;s territory, but <code>&lt;div&gt;</code> still has a place in the <abbr>HTML</abbr>5 world. You should use <code>&lt;div&gt;</code> when there is no other more semantically appropriate element that suits your purpose. Its most common use will likely be for stylistic purposes — i.e., wrapping some semantically marked-up content in a <abbr>CSS</abbr>-styled container.</p>
<p>Ask yourself questions about your content: Is it part of the site&#8217;s navigation? Is the content secondary to its surrounding content? If this content were printed on a page with nothing else, would it make sense? You will need to evaluate your content carefully, thinking about what it is and pairing it with an appropriate element. I recommend taking a look at <a href="http://html5doctor.com/happy-1st-birthday-us/">The Amazing <abbr>HTML</abbr>5 Doctor Easily Confused <abbr>HTML</abbr>5 Element Flowchart of Enlightenment</a> to help you choose the right element for your flow content.</p>
<h2>Example Uses</h2>
<p>Below are a few examples of how you can still use <code>&lt;div&gt;</code> appropriately in your <abbr>HTML</abbr>5 sites.</p>
<h3>Site Wrapper</h3>
<p>While you can <a href="http://camendesign.com/code/developpeurs_sans_frontieres">use the <code>&lt;body&gt; element</code></a> as a &#8220;natural&#8221; wrapper for site content, many people like to use <code>&lt;div&gt;</code> as top-level container for styling the entire site. This is an appropriate use of <code>&lt;div&gt;</code>, as a site wrapper has no meaning or purpose other than to aid styling.</p>
<pre><code>&lt;body&gt;
  &lt;div id="wrapper"&gt;
    &lt;header&gt;
      &lt;h1&gt;My Happy Blog&lt;/h1&gt;
      &lt;nav&gt;
        &lt;!-- ... --&gt;
      &lt;/nav&gt;
    &lt;/header&gt;

    &lt;!-- ... rest of site content ... --&gt;
  &lt;/div&gt;
&lt;/body&gt;</code></pre>
<h3>Intro paragraph</h3>
<p>If you want to style a particular block of content, like the intro to an article, <code>&lt;div&gt;</code> is a perfectly suitable element:</p>
<pre><code>&lt;article&gt;
  &lt;h1&gt;Big announcement&lt;/h1&gt;
  &lt;div class="intro"&gt;
    &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&lt;/p&gt;
    &lt;p&gt;Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.&lt;/p&gt;
  &lt;/div&gt;
  &lt;p&gt;Sed massa metus, molestie nec facilisis non, lobortis ac orci. Suspendisse porttitor laoreet mi, at laoreet dolor rhoncus non. Sed ut massa quis mi placerat iaculis non sit amet odio. Cras tempus urna vitae felis rutrum porta.&lt;/p&gt;
  &lt;p&gt;Maecenas auctor lacus eget mauris tincidunt consectetur. Donec molestie malesuada ligula, sed feugiat massa consequat sit amet. Pellentesque orci metus, ultricies sit amet adipiscing eget, gravida fringilla dui. Vestibulum accumsan dui diam, eget venenatis urna. Sed eu lobortis justo. Aliquam erat volutpat. Aliquam erat volutpat.&lt;/p&gt;
&lt;/article&gt;</code></pre>
<p>The first two paragraphs aren&#8217;t really that different from the rest of the article, but by wrapping them in a <code>&lt;div&gt;</code>, they can be styled to capture the reader&#8217;s attention and draw them into the article. Of course, if you only want to style the first paragraph, you could use a <abbr>CSS</abbr> selector like <code>h1 + p {}</code> or <code>article p:first-child {}</code>. But if you want to style an article&#8217;s first paragraph only <em>sometimes</em>, or you need the style to work in older versions of Internet Explorer, or (as in this case) you want style more than one paragraph, a wrapper <code>&lt;div&gt;</code> is the way to go.</p>
<h3>Other uses for <code>&lt;div&gt;</code></h3>
<p>As previously stated, use of <code>&lt;div&gt;</code> will decline in favour of the new semantic elements. If you&#8217;re using lots of <code>&lt;div&gt;</code>s and only a few of the semantic elements in your <abbr>HTML</abbr>5 sites, then you&#8217;re really not taking advantage of what <abbr>HTML</abbr>5 has to offer.</p>
<p>That said, you may need to rely on <code>&lt;div&gt;</code> as you transition into the world of <abbr>HTML</abbr>5. For example, if many of your site&#8217;s visitors use Internet Explorer with JavaScript disabled, then you won&#8217;t be able to style the new elements for these users. A piece of advice we gave back in our article on <a href="http://html5doctor.com/how-to-use-html5-in-your-client-work-right-now/">how to use <abbr>HTML</abbr>5 in your client work right now</a> was to use <code>&lt;div&gt;</code> with classes named after the new semantic elements, getting you to think about how you would use the new semantic elements without actually using them.</p>
<pre><code>&lt;div class="article"&gt;
  &lt;div class="header"&gt;
    &lt;h1&gt;My blog post&lt;/h1&gt;
    &lt;p&gt;An example using divs with classes instead of the new elements.&lt;/p&gt;
  &lt;/div&gt;
  &lt;!-- ... content ... --&gt;
&lt;/div&gt;

&lt;article&gt;
  &lt;header&gt;
    &lt;h1&gt;My blog post&lt;/h1&gt;
    &lt;p&gt;The same article but switched to the new elements.&lt;/p&gt;
  &lt;/header&gt;
  &lt;!-- ... content ... --&gt;
&lt;/article&gt;</code></pre>
<p>This makes it simple to switch to the new elements when it becomes practical (think &#8220;search and replace&#8221;).</p>
<h2>Recap</h2>
<p>You will certainly use <code>&lt;div&gt;</code> less often in <abbr>HTML</abbr>5 than you did in <abbr>HTML</abbr> 4, but it&#8217;s still a valuable element to have in your toolkit. Sure, it&#8217;ll be picked last for the team because everyone else is better, but it&#8217;ll be the best damn generic container element there is!*</p>
<p>Look at the more semantically valuable elements and consider whether your content would benefit from what they offer. Need help deciding? Take a look at some of these articles right here on <abbr>HTML</abbr>5 Doctor:</p>
<ul>
<li><a href="http://html5doctor.com/the-header-element/">header</a></li>
<li><a href="http://html5doctor.com/the-footer-element/">footer</a></li>
<li><a href="http://html5doctor.com/aside-revisited/">aside</a></li>
<li><a href="http://html5doctor.com/the-article-element/">article</a></li>
<li><a href="http://html5doctor.com/the-section-element/">section</a></li>
<li><a href="http://html5doctor.com/the-figure-figcaption-elements/">figure</a></li>
<li><a href="http://html5doctor.com/nav-element/">nav</a></li>
</ul>
<p>For more, check our <a href="http://html5doctor.com/article-archive/">article archive</a>. And if all else fails, use a <code>&lt;div&gt;</code>!</p>
<p><small>* As it should be, it&#8217;s the only one apart from <code>&lt;span&gt;</code>. That said, if your content is just text, perhaps the oft-overlooked <code>&lt;p&gt;</code> would be more appropriate.</small>
<div id="crp_related">
<h3>Related Posts:</h3>
<ul>
<li><a href="http://html5doctor.com/understanding-aside/" rel="bookmark" class="crp_title">Understanding aside</a></li>
<li><a href="http://html5doctor.com/aside-revisited/" rel="bookmark" class="crp_title">Aside Revisited</a></li>
<li><a href="http://html5doctor.com/the-hgroup-element/" rel="bookmark" class="crp_title">The hgroup element</a></li>
<li><a href="http://html5doctor.com/the-header-element/" rel="bookmark" class="crp_title">The header element</a></li>
<li><a href="http://html5doctor.com/the-section-element/" rel="bookmark" class="crp_title">The section element</a></li>
</ul>
</div>
<p>Share and Save:</p>
<p>	<a rel="nofollow"  href="http://twitter.com/home?status=You%20can%20still%20use%20div%20-%20http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F" title="Twitter"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;title=You%20can%20still%20use%20div&amp;bodytext=%22Sorry%2C%20can%20you%20say%20that%20again%3F%22%2C%20I%20hear%20you%20ask.%20Certainly%3A%20you%20can%20still%20use%20%26lt%3Bdiv%26gt%3B%21%20Despite%20HTML5%20bringing%20us%20new%20elements%20like%20%26lt%3Barticle%26gt%3B%2C%20%26lt%3Bsection%26gt%3B%2C%20and%20%26lt%3Baside%26gt%3B%2C%20the%20%26lt%3Bdiv%26gt%3B%20element%20still%20has%20its%20place.%20Let%20the%20HTML5%20Do" title="Digg"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F" title="Sphinn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;title=You%20can%20still%20use%20div" title="Reddit"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;title=You%20can%20still%20use%20div&amp;notes=%22Sorry%2C%20can%20you%20say%20that%20again%3F%22%2C%20I%20hear%20you%20ask.%20Certainly%3A%20you%20can%20still%20use%20%26lt%3Bdiv%26gt%3B%21%20Despite%20HTML5%20bringing%20us%20new%20elements%20like%20%26lt%3Barticle%26gt%3B%2C%20%26lt%3Bsection%26gt%3B%2C%20and%20%26lt%3Baside%26gt%3B%2C%20the%20%26lt%3Bdiv%26gt%3B%20element%20still%20has%20its%20place.%20Let%20the%20HTML5%20Do" title="del.icio.us"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;title=You%20can%20still%20use%20div" title="StumbleUpon"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F" title="Technorati"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.netvibes.com/share?title=You%20can%20still%20use%20div&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F" title="Netvibes"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;t=You%20can%20still%20use%20div" title="Facebook"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;title=You%20can%20still%20use%20div&amp;annotation=%22Sorry%2C%20can%20you%20say%20that%20again%3F%22%2C%20I%20hear%20you%20ask.%20Certainly%3A%20you%20can%20still%20use%20%26lt%3Bdiv%26gt%3B%21%20Despite%20HTML5%20bringing%20us%20new%20elements%20like%20%26lt%3Barticle%26gt%3B%2C%20%26lt%3Bsection%26gt%3B%2C%20and%20%26lt%3Baside%26gt%3B%2C%20the%20%26lt%3Bdiv%26gt%3B%20element%20still%20has%20its%20place.%20Let%20the%20HTML5%20Do" title="Google Bookmarks"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=You%20can%20still%20use%20div&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F" title="FriendFeed"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;t=You%20can%20still%20use%20div" title="HackerNews"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;title=You%20can%20still%20use%20div&amp;source=HTML5+Doctor+helping+you+implement+HTML5+today&amp;summary=%22Sorry%2C%20can%20you%20say%20that%20again%3F%22%2C%20I%20hear%20you%20ask.%20Certainly%3A%20you%20can%20still%20use%20%26lt%3Bdiv%26gt%3B%21%20Despite%20HTML5%20bringing%20us%20new%20elements%20like%20%26lt%3Barticle%26gt%3B%2C%20%26lt%3Bsection%26gt%3B%2C%20and%20%26lt%3Baside%26gt%3B%2C%20the%20%26lt%3Bdiv%26gt%3B%20element%20still%20has%20its%20place.%20Let%20the%20HTML5%20Do" title="LinkedIn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;h=You%20can%20still%20use%20div" title="NewsVine"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fhtml5doctor.com%2Fyou-can-still-use-div%2F&amp;t=You%20can%20still%20use%20div&amp;s=%22Sorry%2C%20can%20you%20say%20that%20again%3F%22%2C%20I%20hear%20you%20ask.%20Certainly%3A%20you%20can%20still%20use%20%26lt%3Bdiv%26gt%3B%21%20Despite%20HTML5%20bringing%20us%20new%20elements%20like%20%26lt%3Barticle%26gt%3B%2C%20%26lt%3Bsection%26gt%3B%2C%20and%20%26lt%3Baside%26gt%3B%2C%20the%20%26lt%3Bdiv%26gt%3B%20element%20still%20has%20its%20place.%20Let%20the%20HTML5%20Do" title="Tumblr"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
<p><a href="http://html5doctor.com/you-can-still-use-div/" rel="bookmark">You can still use div</a> originally appeared on <a href="http://html5doctor.com">HTML5 Doctor</a> on July 13, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://html5doctor.com/you-can-still-use-div/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>The dl element</title>
		<link>http://html5doctor.com/the-dl-element/</link>
		<comments>http://html5doctor.com/the-dl-element/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 14:00:10 +0000</pubDate>
		<dc:creator>Mike Robinson</dc:creator>
				<category><![CDATA[Elements]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[dl]]></category>
		<category><![CDATA[dt]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://html5doctor.com/?p=725</guid>
		<description><![CDATA[
			
				
			
		
The &#60;dl&#62; element existed in HTML 4, but it&#8217;s been repurposed in HTML5. Let the Doctor explain what&#8217;s changed and how it can be used.

It’s all in the description
In HTML 4, &#60;dl&#62; was considered a “definition list”, containing groups of terms and their definitions. The terms and definitions were a many-to-many relationship: one or more [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;source=html5doctor&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>The <code>&lt;dl&gt;</code> element existed in <abbr title="Hypertext Mark-up Language">HTML</abbr> 4, but it&#8217;s been repurposed in <abbr>HTML</abbr>5. Let the Doctor explain what&#8217;s changed and how it can be used.</p>
<p><span id="more-725"></span></p>
<h2>It’s all in the description</h2>
<p>In <abbr>HTML</abbr> 4, <code>&lt;dl&gt;</code> was considered a “definition list”, containing groups of terms and their definitions. The terms and definitions were a many-to-many relationship: one or more terms to one or more definitions. The element was often misunderstood and therefore misused or not used at all in favour of more widely used and (perhaps) less semantic markup.</p>
<p>To address these issues, <code>&lt;dl&gt;</code>’s definition has been refined in <abbr>HTML</abbr>5 as a <a href="http://www.w3.org/TR/html-markup/dl.html#dl">description list</a>. From the spec:</p>
<blockquote><p>The dl element represents an association list consisting of zero or more name-value groups (a description list). Each group must consist of one or more names (dt elements) followed by one or more values (dd elements). Within a single dl element, there should not be more than one dt element for each name.</p>
</blockquote>
<p>It maintains the many-to-many relationship between names and values. These groupings use <a href="http://www.w3.org/TR/html-markup/dt.html#dt"><code>&lt;dt&gt;</code></a> to represent the term or name and <a href="http://www.w3.org/TR/html-markup/dd.html#dd"><code>&lt;dd&gt;</code></a> for the description. Also note the last line of the quote, stating that a name should not be used more than once within a single <code>&lt;dl&gt;</code>.</p>
<h2>Example Uses</h2>
<p>I&#8217;ve put together a couple of appropriate uses of <code>&lt;dl&gt;</code> to get your creative juices flowing.</p>
<h3>Glossary</h3>
<p><code>&lt;dl&gt;</code> can be used to mark-up a glossary of terms, although you must remember to use <code>&lt;dfn&gt;</code> to indicate that the word is defined here:</p>
<pre><code>&lt;article&gt;
  &lt;h1&gt;The article element&lt;/h1&gt;
  &lt;p&gt;An independent piece of content, one suitable for putting in an
    article element, is content that makes sense on it&rsquo;s own. This yardstick
    is up to your interpretation, but an easy smell test is would this make sense
    in an RSS feed? Of course weblog articles and static pages would make sense
    in a feed reader, and some sites have weblog comment feeds..&lt;/p&gt;
  ...
  &lt;aside&gt;
    &lt;h2&gt;Glossary&lt;/h2&gt;
    &lt;dl&gt;
      &lt;dt&gt;&lt;dfn&gt;RSS&lt;/dfn&gt;&lt;/dt&gt;
      &lt;dd&gt;An XML format for aggregating information from websites whose
        content is frequently updated.&lt;/dd&gt;
      &lt;dt&gt;&lt;dfn&gt;Weblog&lt;/dfn&gt;&lt;/dt&gt;
      &lt;dd&gt;Contraction of the term &quot;web log&quot;, a weblog is a
        website that is periodically updated, like a journal&lt;/dd&gt;
    &lt;/dl&gt;
  &lt;/aside&gt;
&lt;/aticle&gt;
</code></pre>
<p>The example content is from <a href="http://html5doctor.com/the-article-element/">our recent post on the article element</a>. In the example, I plucked out the terms &#8220;RSS&#8221; and &#8220;weblog&#8221; and defined them in a handy glossary. Since this information is supplementary to the article, the glossary has been placed in an <code>&lt;aside&gt;</code>.</p>
<h3>Metadata</h3>
<p><code>&lt;dl&gt;</code> is also appropriate for marking up content metadata, such as information about our article on <a href="http://html5doctor.com/how-to-use-html5-in-your-client-work-right-now/">how to use <abbr>HTML</abbr>5 in your client work right now</a>.</p>
<pre><code>&lt;dl&gt;
  &lt;dt&gt;Authors:&lt;/dt&gt;
  &lt;dd&gt;Remy Sharp&lt;/dd&gt;
  &lt;dd&gt;Rich Clark&lt;/dd&gt;
  &lt;dt&gt;Editor:&lt;/dt&gt;
  &lt;dd&gt;Brandan Lennox&lt;/dd&gt;
  &lt;dt&gt;Category:&lt;/dt&gt;
  &lt;dd&gt;Comment&lt;/dd&gt;
&lt;/dl&gt;
</code></pre>
<p>Since Remy and Richard contributed to that article, they are both listed as authors, showing the pairing of multiple values (<code>&lt;dd&gt;</code>) to one key (<code>&lt;dt&gt;</code>).</p>
<h3>Multiple keys (<code>&lt;dt&gt;</code>) to a single value</h3>
<p>As mentioned above, a <code>&lt;dl&gt;</code> may map many keys (<code>&lt;dt&gt;</code>) to many values (<code>&lt;dd&gt;</code>). This means that one term might have multiple descriptions, or there may be multiple terms that mean the same thing. Related <code>&lt;dt&gt;</code>s should follow each other immediately before their descriptive <code>&lt;dd&gt;</code>.</p>
<pre><code>&lt;dl&gt;
  &lt;dt lang="en-GB"&gt;&lt;dfn&gt;colour&lt;/dfn&gt;&lt;/dt&gt;
  &lt;dt lang="en-US"&gt;&lt;dfn&gt;color&lt;/dfn&gt;&lt;/dt&gt;
  &lt;dd&gt;The visual result of light in their emission, transmission and/or reflection. This perception is determined by the hue, brightness and saturation of the light at a specific point. &lt;/dd&gt;
&lt;/dl&gt;
</code></pre>
<p>Here I have indicated that there are two different spellings of &#8220;colour&#8221; and grouped these terms to match them with the same description.</p>
<p>It is not appropriate, however, to use the same key multiple times within a single <code>&lt;dl&gt;</code>. You can&#8217;t define &#8220;car&#8221; as one thing at the start of a <code>&lt;dl&gt;</code> and then define it again at the end of that same <code>&lt;dl&gt;</code>. If you have multiple descriptions for a single term, you should list both <code>&lt;dd&gt;</code>s directly under the same <code>&lt;dt&gt;</code>.</p>
<pre><code>&lt;dl&gt;
  &lt;dt&gt;&lt;dfn&gt;Chips&lt;/dfn&gt;&lt;/dt&gt;
  &lt;dd&gt;Strips of potato usually deep fried in fat. Commonly referred to as "french fries".&lt;/dd&gt;
  &lt;dd&gt;A small fragment that has been broken off from a larger body (e.g. stone).&lt;/dd&gt;
&lt;/dl&gt;
</code></pre>
<h2>What it should not be used for</h2>
<p>Dialogue was a suggested use for <code>&lt;dl&gt;</code> in <abbr>HTML</abbr> 4, which was widely debated and often considered inappropriate. This application of the element is no longer recommended in <abbr>HTML</abbr>5, and the new definition of the element does indeed back this up. When marking up a conversation, you&#8217;re not describing the speaker, but rather stating what they said. With the demise of <a href="http://html5doctor.com/a-little-more-conversation-with-dialog/"><code>&lt;dialog&gt;</code></a>, conversations have no specific markup element. Instead, the specification makes recommendations of <a href="http://dev.w3.org/html5/spec/Overview.html#conversations">how to mark up conversations</a>.</p>
<h2>Summary</h2>
<p>The changes to <code>&lt;dl&gt;</code> are fairly minor, but the new definition should clear up confusion and enable developers to use it more appropriately. You can use this element to represent key-value pairs semantically and couple it with other elements like <code>&lt;details&gt;</code> and <code>&lt;aside&gt;</code> to give context to this information.</p>
<p>Where do you see yourself using <code>&lt;dl&gt;</code> in <abbr>HTML</abbr>5? Perhaps details about a downloadable file? Or are you going to give your more technical blog articles a glossary? Let us know in the comments!</p>
<div id="crp_related">
<h3>Related Posts:</h3>
<ul>
<li><a href="http://html5doctor.com/the-article-element/" rel="bookmark" class="crp_title">The article element</a></li>
<li><a href="http://html5doctor.com/a-little-more-conversation-with-dialog/" rel="bookmark" class="crp_title">A little more conversation with dialog</a></li>
<li><a href="http://html5doctor.com/html5-doctor-glossary/" rel="bookmark" class="crp_title">HTML5 Doctor Glossary</a></li>
<li><a href="http://html5doctor.com/aside-revisited/" rel="bookmark" class="crp_title">Aside Revisited</a></li>
<li><a href="http://html5doctor.com/understanding-aside/" rel="bookmark" class="crp_title">Understanding aside</a></li>
</ul>
</div>
<p>Share and Save:</p>
<p>	<a rel="nofollow"  href="http://twitter.com/home?status=The%20dl%20element%20-%20http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F" title="Twitter"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;title=The%20dl%20element&amp;bodytext=The%20%26lt%3Bdl%26gt%3B%20element%20existed%20in%20HTML%204%2C%20but%20it%27s%20been%20repurposed%20in%20HTML5.%20Let%20the%20Doctor%20explain%20what%27s%20changed%20and%20how%20it%20can%20be%20used.%0D%0A%0D%0A%0D%0A%0D%0AIt%E2%80%99s%20all%20in%20the%20description%0D%0A%0D%0AIn%20HTML%204%2C%20%26lt%3Bdl%26gt%3B%20was%20considered%20a%20%E2%80%9Cdefinition%20list%E2%80%9D%2C%20containin" title="Digg"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F" title="Sphinn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;title=The%20dl%20element" title="Reddit"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;title=The%20dl%20element&amp;notes=The%20%26lt%3Bdl%26gt%3B%20element%20existed%20in%20HTML%204%2C%20but%20it%27s%20been%20repurposed%20in%20HTML5.%20Let%20the%20Doctor%20explain%20what%27s%20changed%20and%20how%20it%20can%20be%20used.%0D%0A%0D%0A%0D%0A%0D%0AIt%E2%80%99s%20all%20in%20the%20description%0D%0A%0D%0AIn%20HTML%204%2C%20%26lt%3Bdl%26gt%3B%20was%20considered%20a%20%E2%80%9Cdefinition%20list%E2%80%9D%2C%20containin" title="del.icio.us"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;title=The%20dl%20element" title="StumbleUpon"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F" title="Technorati"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.netvibes.com/share?title=The%20dl%20element&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F" title="Netvibes"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;t=The%20dl%20element" title="Facebook"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;title=The%20dl%20element&amp;annotation=The%20%26lt%3Bdl%26gt%3B%20element%20existed%20in%20HTML%204%2C%20but%20it%27s%20been%20repurposed%20in%20HTML5.%20Let%20the%20Doctor%20explain%20what%27s%20changed%20and%20how%20it%20can%20be%20used.%0D%0A%0D%0A%0D%0A%0D%0AIt%E2%80%99s%20all%20in%20the%20description%0D%0A%0D%0AIn%20HTML%204%2C%20%26lt%3Bdl%26gt%3B%20was%20considered%20a%20%E2%80%9Cdefinition%20list%E2%80%9D%2C%20containin" title="Google Bookmarks"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=The%20dl%20element&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F" title="FriendFeed"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;t=The%20dl%20element" title="HackerNews"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;title=The%20dl%20element&amp;source=HTML5+Doctor+helping+you+implement+HTML5+today&amp;summary=The%20%26lt%3Bdl%26gt%3B%20element%20existed%20in%20HTML%204%2C%20but%20it%27s%20been%20repurposed%20in%20HTML5.%20Let%20the%20Doctor%20explain%20what%27s%20changed%20and%20how%20it%20can%20be%20used.%0D%0A%0D%0A%0D%0A%0D%0AIt%E2%80%99s%20all%20in%20the%20description%0D%0A%0D%0AIn%20HTML%204%2C%20%26lt%3Bdl%26gt%3B%20was%20considered%20a%20%E2%80%9Cdefinition%20list%E2%80%9D%2C%20containin" title="LinkedIn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;h=The%20dl%20element" title="NewsVine"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fhtml5doctor.com%2Fthe-dl-element%2F&amp;t=The%20dl%20element&amp;s=The%20%26lt%3Bdl%26gt%3B%20element%20existed%20in%20HTML%204%2C%20but%20it%27s%20been%20repurposed%20in%20HTML5.%20Let%20the%20Doctor%20explain%20what%27s%20changed%20and%20how%20it%20can%20be%20used.%0D%0A%0D%0A%0D%0A%0D%0AIt%E2%80%99s%20all%20in%20the%20description%0D%0A%0D%0AIn%20HTML%204%2C%20%26lt%3Bdl%26gt%3B%20was%20considered%20a%20%E2%80%9Cdefinition%20list%E2%80%9D%2C%20containin" title="Tumblr"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
<p><a href="http://html5doctor.com/the-dl-element/" rel="bookmark">The dl element</a> originally appeared on <a href="http://html5doctor.com">HTML5 Doctor</a> on June 3, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://html5doctor.com/the-dl-element/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>HTML5 Doctor Speaking and Training Appearances</title>
		<link>http://html5doctor.com/speaking/</link>
		<comments>http://html5doctor.com/speaking/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 13:30:40 +0000</pubDate>
		<dc:creator>Mike Robinson</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[talks]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://html5doctor.com/?p=1577</guid>
		<description><![CDATA[<p>Even after slaving away at the web's operating table, the <abbr>HTML</abbr>5 Doctors still find time to speak about <abbr>HTML</abbr>5 at industry events. We'd like to make sure you don't miss out on future chances to see the doctors in action.</p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F">
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;source=html5doctor&amp;style=normal&amp;service=is.gd" height="61" width="50" />
			</a>
		</div><p>Even after slaving away at the web&#8217;s operating table, the <abbr>HTML</abbr>5 Doctors still find time to speak about <abbr>HTML</abbr>5 at industry events. We&#8217;d like to make sure you don&#8217;t miss out on future chances to see the doctors in action.</p>

<p>For your convenience, we&#8217;ve put together a list of events where we&#8217;ll be speaking and even the ones we&#8217;re simply attending. Read on for some of our upcoming <abbr>HTML</abbr>5 appearances.</p>

<p>We&#8217;ll continue to maintain this page with new listings, so check back often. Otherwise you might miss us!</p>

<section class="vcalendar">
  <h2>Upcoming Talks</h2>
  <p>Here are some of the <abbr>HTML</abbr>5 talks we will be giving at various events. Make sure you mark them down in your calendars!</p>
</section>

<section class="vcalendar">  
  <h2>In Attendance</h2>
  <p>Of course, we aren&#8217;t always talking. We still attend events to listen to talks ourselves. If you see us there, come and say hi.</p>
<article class="vevent"> 
  <h3 class="summary"> 
    <a href="http://atnd.org/events/5181" class="url">Designing for iPad; our experiences so far</a> 
  </h3> 
  <details open="open"> 
    <abbr class="dtstart" title="2010-07-21T19:00:00">21 Jul</abbr> &#8211; 
    <em class="attendee">Oli Studholme</em> &#8211; 
    <span class="location">Apple Ginza</span> 
  </details> 
</article>

<article class="vevent"> 
  <h3 class="summary"> 
    <a href="http://buildconf.com/" class="url">Build</a> 
  </h3> 
  <details open="open"> 
    <abbr class="dtstart" title="2010-11-10T09:00:00">10 Nov</abbr> &#8211; 
    <em class="attendee">Jack Osborne</em> &#8211; 
    <span class="location">Waterfront Studio, Belfast</span> 
  </details> 
</article>
</section>

<h2>Run an event? Get in touch!</h2>
<p>If you organise an event or workshop and would like us to speak (or you&#8217;d just like to see us there), then we&#8217;d love to <a href="http://html5doctor.com/contact/">hear from you</a>.</p><div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://html5doctor.com/legend-not-such-a-legend-anymore/" rel="bookmark" class="crp_title">Legend not such a legend anymore</a></li><li><a href="http://html5doctor.com/web-directions-atmedia-2010/" rel="bookmark" class="crp_title">HTML5 Doctor at Web Directions @media</a></li><li><a href="http://html5doctor.com/summary-figcaption-element/" rel="bookmark" class="crp_title">Hello, summary and figcaption elements</a></li><li><a href="http://html5doctor.com/your-questions-answered-8/" rel="bookmark" class="crp_title">Your Questions Answered #8</a></li><li><a href="http://html5doctor.com/the-address-element/" rel="bookmark" class="crp_title">The Address Element</a></li></ul></div>


Share and Save:


	<a rel="nofollow"  href="http://twitter.com/home?status=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances%20-%20http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F" title="Twitter"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;title=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances&amp;bodytext=Even%20after%20slaving%20away%20at%20the%20web%27s%20operating%20table%2C%20the%20HTML5%20Doctors%20still%20find%20time%20to%20speak%20about%20HTML5%20at%20industry%20events.%20We%27d%20like%20to%20make%20sure%20you%20don%27t%20miss%20out%20on%20future%20chances%20to%20see%20the%20doctors%20in%20action." title="Digg"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F" title="Sphinn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;title=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances" title="Reddit"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;title=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances&amp;notes=Even%20after%20slaving%20away%20at%20the%20web%27s%20operating%20table%2C%20the%20HTML5%20Doctors%20still%20find%20time%20to%20speak%20about%20HTML5%20at%20industry%20events.%20We%27d%20like%20to%20make%20sure%20you%20don%27t%20miss%20out%20on%20future%20chances%20to%20see%20the%20doctors%20in%20action." title="del.icio.us"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;title=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances" title="StumbleUpon"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F" title="Technorati"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.netvibes.com/share?title=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F" title="Netvibes"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;t=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances" title="Facebook"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;title=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances&amp;annotation=Even%20after%20slaving%20away%20at%20the%20web%27s%20operating%20table%2C%20the%20HTML5%20Doctors%20still%20find%20time%20to%20speak%20about%20HTML5%20at%20industry%20events.%20We%27d%20like%20to%20make%20sure%20you%20don%27t%20miss%20out%20on%20future%20chances%20to%20see%20the%20doctors%20in%20action." title="Google Bookmarks"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F" title="FriendFeed"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;t=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances" title="HackerNews"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;title=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances&amp;source=HTML5+Doctor+helping+you+implement+HTML5+today&amp;summary=Even%20after%20slaving%20away%20at%20the%20web%27s%20operating%20table%2C%20the%20HTML5%20Doctors%20still%20find%20time%20to%20speak%20about%20HTML5%20at%20industry%20events.%20We%27d%20like%20to%20make%20sure%20you%20don%27t%20miss%20out%20on%20future%20chances%20to%20see%20the%20doctors%20in%20action." title="LinkedIn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;h=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances" title="NewsVine"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fhtml5doctor.com%2Fspeaking%2F&amp;t=HTML5%20Doctor%20Speaking%20and%20Training%20Appearances&amp;s=Even%20after%20slaving%20away%20at%20the%20web%27s%20operating%20table%2C%20the%20HTML5%20Doctors%20still%20find%20time%20to%20speak%20about%20HTML5%20at%20industry%20events.%20We%27d%20like%20to%20make%20sure%20you%20don%27t%20miss%20out%20on%20future%20chances%20to%20see%20the%20doctors%20in%20action." title="Tumblr"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/><p><a href="http://html5doctor.com/speaking/" rel="bookmark">HTML5 Doctor Speaking and Training Appearances</a> originally appeared on <a href="http://html5doctor.com">HTML5 Doctor</a> on April 16, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://html5doctor.com/speaking/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Aside Revisited</title>
		<link>http://html5doctor.com/aside-revisited/</link>
		<comments>http://html5doctor.com/aside-revisited/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 14:23:57 +0000</pubDate>
		<dc:creator>Mike Robinson</dc:creator>
				<category><![CDATA[Elements]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[aside]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://html5doctor.com/?p=1015</guid>
		<description><![CDATA[Since the <abbr>HTML</abbr>5 specification is not yet final, we can expect changes to improve on the good bits and cut out the bad bits. <code>aside</code> &#8212; a misunderstood good bit &#8212; has now been tweaked based on feedback from the web development community. In this article, we'll take a look at what's changed.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;source=html5doctor&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>Since the <abbr>HTML</abbr>5 specification is not yet final, we can expect changes to improve on the good bits and cut out the bad bits. <code>aside</code> &#8212; a misunderstood good bit &#8212; has now been tweaked based on feedback from the web development community. In this article, we&#8217;ll take a look at what&#8217;s changed.</p>
<h2>Aside redefined</h2>
<p>When we previously discussed <code>aside</code> in &#8220;<a href="/understanding-aside/">Understanding Aside</a>&#8220;, its definition suggested that it should be used for content tangentially related to the content surrounding it, such as related reading links and glossaries. It did <em>not</em> appear to be an appropriate element for holding secondary content related to the site as a whole, typically known as a &#8220;sidebar&#8221;.</p>
<p>From the comments here and elsewhere, you can see this definition was not accepted by developers. The spec writers listened, and <code>aside</code> is now acceptable for secondary content when not nested within an <code>article</code> element.</p>
<h2>Examples of <code>aside</code> in two different contexts</h2>
<p>With the new definition of <code>aside</code>, it&#8217;s crucial to remain aware of its context. When used <em>within</em> an <code>article</code> element, the contents should be specifically related to that article (e.g., a glossary). When used <em>outside</em> of an <code>article</code> element, the contents should be related to the site (e.g., a blogroll, groups of additional <a href="/nav-element/">navigation</a>, and even advertising if that content is related to the page).</p>
<p>The two uses of <code>aside</code> can be best illustrated with an example:</p>
<p><code>
<pre>&lt;body&gt;
  &lt;header&gt;
    &lt;h1&gt;My Blog&lt;/h1&gt;
  &lt;/header&gt;
  &lt;article&gt;
    &lt;h1&gt;My Blog Post&lt;/h1&gt;
    &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
    eiusmod tempor incididunt ut labore et dolore magna aliqua.&lt;/p&gt;
    &lt;aside&gt;
      &lt;!-- Since this aside is contained within an article, a parser
      should understand that the content of this aside is directly related
      to the article itself. --&gt;
      &lt;h1&gt;Glossary&lt;/h1&gt;
      &lt;dl&gt;
        &lt;dt&gt;Lorem&lt;/dt&gt;
        &lt;dd&gt;ipsum dolor sit amet&lt;/dd&gt;
      &lt;/dl&gt;
    &lt;/aside&gt;
  &lt;/article&gt;
  &lt;aside&gt;
    &lt;!-- This aside is outside of the article. Its content is related
    to the page, but not as closely related to the above article --&gt;
    &lt;h2&gt;Blogroll&lt;/h2&gt;
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;My Friend&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;My Other Friend&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#&quot;&gt;My Best Friend&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/aside&gt;
&lt;/body&gt;</pre>
<p></code></p>
<h2>Conclusion</h2>
<p>The <code>aside</code> element can now represent secondary content when used outside of an <code>article</code>. Keep in mind that <code>aside</code> &#8212; and, more generally, secondary content &#8212; does not <em>necessarily</em> mean &#8220;sidebar&#8221;. The style of the content should not dictate the use of the element. For content that is not the primary focus of an article (or page) but is still <em>related</em> to the article (or page), <code>aside</code> is what you need, regardless of its visual design.</p>
<div id="crp_related">
<h3>Related Posts:</h3>
<ul>
<li><a href="http://html5doctor.com/understanding-aside/" rel="bookmark" class="crp_title">Understanding aside</a></li>
<li><a href="http://html5doctor.com/designing-a-blog-with-html5/" rel="bookmark" class="crp_title">Designing a blog with html5</a></li>
<li><a href="http://html5doctor.com/you-can-still-use-div/" rel="bookmark" class="crp_title">You can still use div</a></li>
<li><a href="http://html5doctor.com/the-dl-element/" rel="bookmark" class="crp_title">The dl element</a></li>
<li><a href="http://html5doctor.com/draw-attention-with-mark/" rel="bookmark" class="crp_title">Draw attention with mark</a></li>
</ul>
</div>
<p>Share and Save:</p>
<p>	<a rel="nofollow"  href="http://twitter.com/home?status=Aside%20Revisited%20-%20http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F" title="Twitter"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;title=Aside%20Revisited&amp;bodytext=Since%20the%20HTML5%20specification%20is%20not%20yet%20final%2C%20we%20can%20expect%20changes%20to%20improve%20on%20the%20good%20bits%20and%20cut%20out%20the%20bad%20bits.%20aside%20%26%238212%3B%20a%20misunderstood%20good%20bit%20%26%238212%3B%20has%20now%20been%20tweaked%20based%20on%20feedback%20from%20the%20web%20development%20community.%20In%20this%20article%2C%20we%27ll%20take%20a%20look%20at%20what%27s%20changed." title="Digg"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F" title="Sphinn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;title=Aside%20Revisited" title="Reddit"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;title=Aside%20Revisited&amp;notes=Since%20the%20HTML5%20specification%20is%20not%20yet%20final%2C%20we%20can%20expect%20changes%20to%20improve%20on%20the%20good%20bits%20and%20cut%20out%20the%20bad%20bits.%20aside%20%26%238212%3B%20a%20misunderstood%20good%20bit%20%26%238212%3B%20has%20now%20been%20tweaked%20based%20on%20feedback%20from%20the%20web%20development%20community.%20In%20this%20article%2C%20we%27ll%20take%20a%20look%20at%20what%27s%20changed." title="del.icio.us"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;title=Aside%20Revisited" title="StumbleUpon"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F" title="Technorati"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.netvibes.com/share?title=Aside%20Revisited&amp;url=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F" title="Netvibes"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;t=Aside%20Revisited" title="Facebook"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;title=Aside%20Revisited&amp;annotation=Since%20the%20HTML5%20specification%20is%20not%20yet%20final%2C%20we%20can%20expect%20changes%20to%20improve%20on%20the%20good%20bits%20and%20cut%20out%20the%20bad%20bits.%20aside%20%26%238212%3B%20a%20misunderstood%20good%20bit%20%26%238212%3B%20has%20now%20been%20tweaked%20based%20on%20feedback%20from%20the%20web%20development%20community.%20In%20this%20article%2C%20we%27ll%20take%20a%20look%20at%20what%27s%20changed." title="Google Bookmarks"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Aside%20Revisited&amp;link=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F" title="FriendFeed"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;t=Aside%20Revisited" title="HackerNews"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;title=Aside%20Revisited&amp;source=HTML5+Doctor+helping+you+implement+HTML5+today&amp;summary=Since%20the%20HTML5%20specification%20is%20not%20yet%20final%2C%20we%20can%20expect%20changes%20to%20improve%20on%20the%20good%20bits%20and%20cut%20out%20the%20bad%20bits.%20aside%20%26%238212%3B%20a%20misunderstood%20good%20bit%20%26%238212%3B%20has%20now%20been%20tweaked%20based%20on%20feedback%20from%20the%20web%20development%20community.%20In%20this%20article%2C%20we%27ll%20take%20a%20look%20at%20what%27s%20changed." title="LinkedIn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;h=Aside%20Revisited" title="NewsVine"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fhtml5doctor.com%2Faside-revisited%2F&amp;t=Aside%20Revisited&amp;s=Since%20the%20HTML5%20specification%20is%20not%20yet%20final%2C%20we%20can%20expect%20changes%20to%20improve%20on%20the%20good%20bits%20and%20cut%20out%20the%20bad%20bits.%20aside%20%26%238212%3B%20a%20misunderstood%20good%20bit%20%26%238212%3B%20has%20now%20been%20tweaked%20based%20on%20feedback%20from%20the%20web%20development%20community.%20In%20this%20article%2C%20we%27ll%20take%20a%20look%20at%20what%27s%20changed." title="Tumblr"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
<p><a href="http://html5doctor.com/aside-revisited/" rel="bookmark">Aside Revisited</a> originally appeared on <a href="http://html5doctor.com">HTML5 Doctor</a> on October 28, 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://html5doctor.com/aside-revisited/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>Draw attention with mark</title>
		<link>http://html5doctor.com/draw-attention-with-mark/</link>
		<comments>http://html5doctor.com/draw-attention-with-mark/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:10:43 +0000</pubDate>
		<dc:creator>Mike Robinson</dc:creator>
				<category><![CDATA[Elements]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[mark]]></category>

		<guid isPermaLink="false">http://html5doctor.com/?p=771</guid>
		<description><![CDATA[Other than allowing Mark's everywhere to <em>rejoice</em> that they have an element that shares their name, HTML 5 introduces mark as a way to highlight text to indicate its relevance to the user. Read on as we tally up the uses of this new element.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;source=html5doctor&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>Other than allowing Marks everywhere to <em>rejoice</em> that they have an element that shares their name, HTML 5 introduces <code>mark</code> as a way to highlight text to indicate its relevance to the user. Read on as we tally up the uses of this new element.<span id="more-771"></span></p>
<p>As always, the defining text passed down to us in the <a href="http://dev.w3.org/html5/spec/Overview.html#the-mark-element">specification</a>:</p>
<blockquote><p>The mark element represents a run of text in one document marked or highlighted for reference purposes, due to its relevance in another context. When used in a quotation or other block of text referred to from the prose, it indicates a highlight that was not originally present but which has been added to bring the reader&#8217;s attention to a part of the text that might not have been considered important by the original author when the block was originally written, but which is now under previously unexpected scrutiny. When used in the main prose of a document, it indicates a part of the document that has been highlighted due to its likely relevance to the user&#8217;s current activity.</p>
</blockquote>
<p>Both uses are aimed at drawing attention to what is relevant to the user. <code>mark</code> can provide a very useful aid to the user with appropriate styling.</p>
<h2>Examples</h2>
<h3>Search Results</h3>
<p>A prime example of how to use <code>mark</code> today is to highlight the term a user has searched for. Many search engines already do this using other methods to mark the text, which shows the need for this new element.</p>
<pre><code>&lt;h1&gt;716,000,000 search results for the query &quot;&lt;mark&gt;HTML 5&lt;/mark&gt;&quot;&lt;/h1&gt;
&lt;section id=&quot;search-results&quot;&gt;
  &lt;article&gt;
    &lt;h2&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/HTML_5&quot;&gt;&lt;mark&gt;HTML 5&lt;/mark&gt; - Wikipedia, the free encyclopedia&lt;/a&gt;&lt;/h2&gt;
    &lt;p&gt;&lt;mark&gt;HTML 5&lt;/mark&gt; is the next major revision of &lt;mark&gt;HTML&lt;/mark&gt; (&quot;hypertext markup language&quot;), the core markup language of the World Wide Web. The WHATWG started work on the ... &lt;a href=&quot;http://en.wikipedia.org/wiki/HTML_5&quot;&gt;Read more&lt;/a&gt;&lt;/p&gt;
  &lt;/article&gt;
  &lt;article&gt;
    &lt;h2&gt;&lt;a href=&quot;http://dev.w3.org/html5/spec/Overview.html&quot;&gt;&lt;mark&gt;HTML 5&lt;/mark&gt;&lt;/a&gt;&lt;/h2&gt;
    &lt;p&gt;A vocabulary and associated APIs for &lt;mark&gt;HTML&lt;/mark&gt; and XHTML. Editor's Draft 16 August 2009. Latest Published Version: http://www.w3.org/TR/&lt;mark&gt;html5&lt;/mark&gt;/; Latest Editor's ... &lt;a href=&quot;http://dev.w3.org/html5/spec/Overview.html&quot;&gt;Read more&lt;/a&gt;&lt;/p&gt;
  &lt;/article&gt;
  &lt;article&gt;
    &lt;h2&gt;&lt;a href=&quot;http://www.whatwg.org/specs/web-apps/current-work/multipage/&quot;&gt;&lt;mark&gt;HTML 5&lt;/mark&gt;&lt;/a&gt;&lt;/h2&gt;
    &lt;p&gt;Multiple-page version: http://whatwg.org/&lt;mark&gt;html5&lt;/mark&gt;; One-page version: http://www.whatwg.org/specs/web-apps/current-work/; PDF print versions: ... &lt;a href=&quot;http://www.whatwg.org/specs/web-apps/current-work/multipage/&quot;&gt;Read more&lt;/a&gt;&lt;/p&gt;
  &lt;/article&gt;
  &lt;article&gt;
    &lt;h2&gt;&lt;a href=&quot;http://html5gallery.com/&quot;&gt;&lt;mark&gt;HTML5&lt;/mark&gt; Gallery | A showcase of sites using &lt;mark&gt;HTML 5&lt;/mark&gt; markup&lt;/a&gt;&lt;/h2&gt;
    &lt;p&gt;A showcase of sites using &lt;mark&gt;html5&lt;/mark&gt; markup, with twin primary aims to help web designers and developers of how to implement &lt;mark&gt;html5&lt;/mark&gt; into their sites now, ... &lt;a href=&quot;http://html5gallery.com/&quot;&gt;Read more&lt;/a&gt;&lt;/p&gt;
  &lt;/article&gt;
&lt;/section&gt;
&lt;nav&gt;
  &lt;ol&gt;
    &lt;li&gt;1&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;2&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;3&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;4&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;5&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;...&lt;/li&gt;
  &lt;/ol&gt;
&lt;/nav&gt;
</code></pre>
<p><a href="http://jsbin.com/uleza">View a live example</a></p>
<p>Any instance of &#8220;HTML 5&#8243;, and even simply &#8220;HTML&#8221;, has been marked as relevant to the user&#8217;s search. This can help the user see how relevant their search results are, so they can pick the best results for what they need. When implementing this in a language like PHP, you can use functions like <a href="http://php.net/str_replace"><code>str_replace()</code></a> or some clever <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expressions</a> to find the search term within your output and wrap <code>mark</code> around each instance.</p>
<h3>Quotes</h3>
<p>In all the brilliant things that have been said, there is always a chance that someone will come back to scrutinize parts in the future. These pieces of text or speech may not have had any importance when they were original formed, and hence not been given such emphasis, but now have attracted particular interest by a another party. <code>mark</code> can be used in quotations to highlight such text.</p>
<pre><code>&lt;p&gt;Mike once said:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Google won't last, &lt;mark&gt;they will fail&lt;/mark&gt; at search and advertising as nothing will topple Yahoo.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Of course, we now know he was wrong. Google has not failed, they excelled in search and online advertising, making them a very profitable company.&lt;/p&gt;
</code></pre>
<p>Here I have quoted myself, highlighting where I was wrong in my original statement and then immediately correcting this error in the following paragraph.</p>
<h2>Differences from strong and em</h2>
<p>Previously, you may have used <code>em</code> and <code>strong</code> for adding emphasis or importance, respectively, to portions of text. <code>mark</code> differs from these two as it is used purely for highlighting the relevance of a piece of text to the user and/or page&#8217;s content. In the past you may have used <code>em</code> and <code>strong</code> for this purpose, which was arguably valid at the time due to the lack of a better element, but the introduction of <code>mark</code> simply means their use will be more strict.</p>
<p>Use <code>strong</code> when you need to indicate the importance of a piece of text, such as an error or warning message, and <code>em</code> should be for adding emphasis to text, stressing words to adapt the meaning of a sentence.</p>
<h2>Final Thoughts</h2>
<p>The addition of <code>mark</code> to HTML is welcome, preventing stretching the definitions of <code>strong</code> and <code>em</code> too thin. There are many practical uses of <code>mark</code> in the world today, particularly for search and educational articles like tutorials. Put your highlighter pens down and start using <code>mark</code> to highlight relevant text (it&#8217;s better for your screen!).</p>
<p><small><strong>Disclaimer</strong>: I have nothing against Google, this was merely a fictitious example vaguely related to the use of <code>mark</code> in search. Long live Google?</small>
<div id="crp_related">
<h3>Related Posts:</h3>
<ul>
<li><a href="http://html5doctor.com/block-level-links-in-html-5/" rel="bookmark" class="crp_title">&#8220;Block-level&#8221; links in HTML5</a></li>
<li><a href="http://html5doctor.com/aside-revisited/" rel="bookmark" class="crp_title">Aside Revisited</a></li>
<li><a href="http://html5doctor.com/the-time-element/" rel="bookmark" class="crp_title">The time element (and microformats)</a></li>
<li><a href="http://html5doctor.com/html-5-boilerplates/" rel="bookmark" class="crp_title">HTML5 Boilerplates</a></li>
<li><a href="http://html5doctor.com/video-the-track-element-and-webm-codec/" rel="bookmark" class="crp_title">Video: the track element and webM codec</a></li>
</ul>
</div>
<p>Share and Save:</p>
<p>	<a rel="nofollow"  href="http://twitter.com/home?status=Draw%20attention%20with%20mark%20-%20http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F" title="Twitter"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;title=Draw%20attention%20with%20mark&amp;bodytext=Other%20than%20allowing%20Mark%27s%20everywhere%20to%20rejoice%20that%20they%20have%20an%20element%20that%20shares%20their%20name%2C%20HTML%205%20introduces%20mark%20as%20a%20way%20to%20highlight%20text%20to%20indicate%20its%20relevance%20to%20the%20user.%20Read%20on%20as%20we%20tally%20up%20the%20uses%20of%20this%20new%20element." title="Digg"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F" title="Sphinn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;title=Draw%20attention%20with%20mark" title="Reddit"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;title=Draw%20attention%20with%20mark&amp;notes=Other%20than%20allowing%20Mark%27s%20everywhere%20to%20rejoice%20that%20they%20have%20an%20element%20that%20shares%20their%20name%2C%20HTML%205%20introduces%20mark%20as%20a%20way%20to%20highlight%20text%20to%20indicate%20its%20relevance%20to%20the%20user.%20Read%20on%20as%20we%20tally%20up%20the%20uses%20of%20this%20new%20element." title="del.icio.us"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;title=Draw%20attention%20with%20mark" title="StumbleUpon"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F" title="Technorati"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.netvibes.com/share?title=Draw%20attention%20with%20mark&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F" title="Netvibes"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;t=Draw%20attention%20with%20mark" title="Facebook"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;title=Draw%20attention%20with%20mark&amp;annotation=Other%20than%20allowing%20Mark%27s%20everywhere%20to%20rejoice%20that%20they%20have%20an%20element%20that%20shares%20their%20name%2C%20HTML%205%20introduces%20mark%20as%20a%20way%20to%20highlight%20text%20to%20indicate%20its%20relevance%20to%20the%20user.%20Read%20on%20as%20we%20tally%20up%20the%20uses%20of%20this%20new%20element." title="Google Bookmarks"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Draw%20attention%20with%20mark&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F" title="FriendFeed"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;t=Draw%20attention%20with%20mark" title="HackerNews"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;title=Draw%20attention%20with%20mark&amp;source=HTML5+Doctor+helping+you+implement+HTML5+today&amp;summary=Other%20than%20allowing%20Mark%27s%20everywhere%20to%20rejoice%20that%20they%20have%20an%20element%20that%20shares%20their%20name%2C%20HTML%205%20introduces%20mark%20as%20a%20way%20to%20highlight%20text%20to%20indicate%20its%20relevance%20to%20the%20user.%20Read%20on%20as%20we%20tally%20up%20the%20uses%20of%20this%20new%20element." title="LinkedIn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;h=Draw%20attention%20with%20mark" title="NewsVine"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fhtml5doctor.com%2Fdraw-attention-with-mark%2F&amp;t=Draw%20attention%20with%20mark&amp;s=Other%20than%20allowing%20Mark%27s%20everywhere%20to%20rejoice%20that%20they%20have%20an%20element%20that%20shares%20their%20name%2C%20HTML%205%20introduces%20mark%20as%20a%20way%20to%20highlight%20text%20to%20indicate%20its%20relevance%20to%20the%20user.%20Read%20on%20as%20we%20tally%20up%20the%20uses%20of%20this%20new%20element." title="Tumblr"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
<p><a href="http://html5doctor.com/draw-attention-with-mark/" rel="bookmark">Draw attention with mark</a> originally appeared on <a href="http://html5doctor.com">HTML5 Doctor</a> on August 18, 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://html5doctor.com/draw-attention-with-mark/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A little more conversation with dialog</title>
		<link>http://html5doctor.com/a-little-more-conversation-with-dialog/</link>
		<comments>http://html5doctor.com/a-little-more-conversation-with-dialog/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 13:57:12 +0000</pubDate>
		<dc:creator>Mike Robinson</dc:creator>
				<category><![CDATA[Elements]]></category>
		<category><![CDATA[conversation]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[dialog]]></category>
		<category><![CDATA[dt]]></category>
		<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://html5doctor.com/?p=707</guid>
		<description><![CDATA[Less action, more conversation. That's how that Elvis song went, right? OK, perhaps not. Regardless, the new dialog element introduced in HTML 5 is all about marking up the conversation, and it uses a couple of elements you may have already heard of. Sure, it's a little less action than something like audio, but it is still a useful element to semantically mark up many forms of dialogue.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;source=html5doctor&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p>Less action, more conversation. That&#8217;s how that <a href="http://en.wikipedia.org/wiki/A_Little_Less_Conversation">Elvis song</a> went, right? OK, perhaps not. Regardless, the new <code>dialog</code> element introduced in <abbr title="Hypertext Mark-up Language">HTML</abbr> 5 is all about marking up the conversation, and it uses a couple of elements you may have already heard of. Sure, it&#8217;s a little less action than something like <a href="http://html5doctor.com/native-audio-in-the-browser/"><code>audio</code></a>, but it is still a useful element to semantically mark up many forms of dialogue.<span id="more-707"></span></p>
<h2>Defining dialog</h2>
<p>The <a href="http://dev.w3.org/html5/spec/Overview.html">HTML 5 specification</a> defines <code>dialog</code> as follows:</p>
<blockquote><p>The dialog element represents a conversation, meeting minutes, a chat transcript, a dialog in a screenplay, an instant message log, or some other construct in which different players take turns in discourse.</p>
</blockquote>
<p>That&#8217;s a lot of different types of dialogue that can be marked up. A <code>dialog</code> element contains the <code>dt</code> element for a speaker&#8217;s name, and <code>dd</code> for what they said. That&#8217;s right, <code>dialog</code> borrows two elements from <code>dl</code> to pair up a speaker and what they say. The definition of a <code>dl</code> itself has changed in HTML 5 to become an association list, pairing names (<code>dt</code>) with values (<code>dd</code>). <code>dialog</code> uses this in a similar way, pairing a name of a speaker with whatever they said.</p>
<p>This means that the <code>dt</code> is the source (speaker) of what is within the following <code>dd</code>, and the <code>dd</code> contains a quotation from that source. Therefore, <code>dialog</code> does not require the use of <code>cite</code>, <code>blockquote</code> or <code>q</code>. The only time a <code>q</code> would be appropriate within <code>dialog</code> would be if what one person said contained a quotation from someone else. It is also possible to use <code>p</code> within a <code>dd</code>, should you need to mark-up large responses as paragraphs.</p>
<p>Also, despite the fact both <code>dialog</code> and <code>dl</code> share <code>dt</code> and <code>dd</code>, a dialogue should never be marked up with a <code>dl</code>. However, appropriate uses of <code>dl</code> is beyond the scope of this article and will be revisited in a separate article.</p>
<h2>Enough talk, let&#8217;s get practical</h2>
<h3>Marked Up Humour</h3>
<p>My first example is very straight forward. Using <code>dialog</code>, I will mark up a hilarious &#8220;Knock, Knock&#8221; joke.</p>
<pre><code>&lt;dialog&gt;
  &lt;dt&gt;Sam&lt;/dt&gt;
  &lt;dd&gt;Knock, Knock.&lt;/dd&gt;
  &lt;dt&gt;Eric&lt;/dt&gt;
  &lt;dd&gt;Who&apos;s there?&lt;/dd&gt;
  &lt;dt&gt;Sam&lt;/dt&gt;
  &lt;dd&gt;Justin.&lt;/dd&gt;
  &lt;dt&gt;Eric&lt;/dt&gt;
  &lt;dd&gt;Justin who?&lt;/dd&gt;
  &lt;dt&gt;Sam&lt;/dt&gt;
  &lt;dd&gt;Justin time for dinner!&lt;/dd&gt;
&lt;/dialog&gt;
</code></pre>
<p>Note that two people are in this conversation, Sam and Eric. Their names are marked up with <code>dt</code> and what they said is placed in <code>dd</code>. Wrap it all up in a the fresh <code>dialog</code>, and you have a semantically marked up conversation!</p>
<p>Once your sides have stopped splitting, I&#8217;d like to direct you to something a little more complex: how <a href="http://twitter.com">Twitter</a> can take advantage of <code>dialog</code>.</p>
<h3>A Twitter Conversation</h3>
<p>Twitter is a prime example of where <code>dialog</code> can be used in the real world. When a user posts a tweet, other users can reply by starting their tweet with @username, where username is whoever they are responding to.</p>
<pre><code>&lt;dialog&gt;
  &lt;dt&gt;&lt;a href="http://twitter.com/akamike"&gt;@akamike&lt;/a&gt;, &lt;time datetime="2009-08-11T12:35:54"&gt;13 minutes ago&lt;/time&gt;&lt;/dt&gt;
  &lt;dd&gt;Where is a good place to eat in town?&lt;/dd&gt;
  &lt;dt&gt;&lt;a href="http://twitter.com/brucel"&gt;@brucel&lt;/a&gt;, &lt;time datetime="2009-08-11T12:37:56"&gt;11 minutes ago&lt;/time&gt;&lt;/dt&gt;
  &lt;dd&gt;&lt;a href="http://twitter.com/akamike"&gt;@akamike&lt;/a&gt; Have your tried The Swine's Flu pub lunches?&lt;/dd&gt;
  &lt;dt&gt;&lt;a href="http://twitter.com/Rich_Clark"&gt;@Rich_Clark&lt;/a&gt;, &lt;time datetime="2009-08-11T12:38:04"&gt;11 minutes ago&lt;/time&gt;&lt;/dt&gt;
  &lt;dd&gt;&lt;a href="http://twitter.com/akamike"&gt;@akamike&lt;/a&gt; If you like seafood, try the restaurants at the waterfront&lt;/dd&gt;
  &lt;dt&gt;&lt;a href="http://twitter.com/jackosborne"&gt;@jackosborne&lt;/a&gt;, &lt;time datetime="2009-08-11T12:40:02"&gt;9 minutes ago&lt;/time&gt;&lt;/dt&gt;
  &lt;dd&gt;&lt;a href="http://twitter.com/akamike"&gt;@akamike&lt;/a&gt; What &lt;a href="http://twitter.com/brucel"&gt;@brucel&lt;/a&gt; said, or there are lots of good bakeries on the high street.&lt;/dd&gt;
  &lt;dt&gt;&lt;a href="http://twitter.com/spambot148"&gt;@spambot148&lt;/a&gt;, &lt;time datetime="2009-08-11T12:45:16"&gt;4 minutes ago&lt;/time&gt;&lt;/dt&gt;
  &lt;dd&gt;&lt;a href="http://twitter.com/akamike"&gt;@akamike&lt;/a&gt; Gain 1000 followers in 5 minutes!&lt;/dd&gt;
&lt;/dialog&gt;
</code></pre>
<p><a href="http://jsbin.com/obazi">View a live example</a></p>
<p>Here, I have marked up an example of a conversation on Twitter, with users replying to the original speakers tweet. Once again, each person has had their name marked up in a <code>dt</code> but also uses the new <code>time</code> element to define the time of the tweet. In the new <a href="http://dev.w3.org/html5/spec/Overview.html#the-dt-element">definition</a> of <code>dt</code>, there is an example of using <code>time</code> this. Finally, the content of each tweet is placed in a <code>dd</code>. This shows how <code>dialog</code> could be used today in even some of the most popular services on the web.</p>
<h2>Wrapping up</h2>
<p><code>dialog</code> is quite an easy element to grasp, and you&#8217;ll quickly find yourself marking up conversations, chat logs and more with this new element. As seen with the Twitter example, there is scope to add extra value to dialogue used in the real world. Now, go forth and have conversations knowing that you can easily mark them up in HTML 5!
<div id="crp_related">
<h3>Related Posts:</h3>
<ul>
<li><a href="http://html5doctor.com/the-dl-element/" rel="bookmark" class="crp_title">The dl element</a></li>
<li><a href="http://html5doctor.com/september-html5-spec-changes/" rel="bookmark" class="crp_title">September HTML5 spec changes</a></li>
<li><a href="http://html5doctor.com/happy-1st-birthday-us/" rel="bookmark" class="crp_title">Happy 1st Birthday us</a></li>
<li><a href="http://html5doctor.com/web-directions-atmedia-2010/" rel="bookmark" class="crp_title">HTML5 Doctor at Web Directions @media</a></li>
<li><a href="http://html5doctor.com/the-hgroup-element/" rel="bookmark" class="crp_title">The hgroup element</a></li>
</ul>
</div>
<p>Share and Save:</p>
<p>	<a rel="nofollow"  href="http://twitter.com/home?status=A%20little%20more%20conversation%20with%20dialog%20-%20http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F" title="Twitter"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;title=A%20little%20more%20conversation%20with%20dialog&amp;bodytext=Less%20action%2C%20more%20conversation.%20That%27s%20how%20that%20Elvis%20song%20went%2C%20right%3F%20OK%2C%20perhaps%20not.%20Regardless%2C%20the%20new%20dialog%20element%20introduced%20in%20HTML%205%20is%20all%20about%20marking%20up%20the%20conversation%2C%20and%20it%20uses%20a%20couple%20of%20elements%20you%20may%20have%20already%20heard%20of.%20Sure%2C%20it%27s%20a%20little%20less%20action%20than%20something%20like%20audio%2C%20but%20it%20is%20still%20a%20useful%20element%20to%20semantically%20mark%20up%20many%20forms%20of%20dialogue." title="Digg"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F" title="Sphinn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;title=A%20little%20more%20conversation%20with%20dialog" title="Reddit"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;title=A%20little%20more%20conversation%20with%20dialog&amp;notes=Less%20action%2C%20more%20conversation.%20That%27s%20how%20that%20Elvis%20song%20went%2C%20right%3F%20OK%2C%20perhaps%20not.%20Regardless%2C%20the%20new%20dialog%20element%20introduced%20in%20HTML%205%20is%20all%20about%20marking%20up%20the%20conversation%2C%20and%20it%20uses%20a%20couple%20of%20elements%20you%20may%20have%20already%20heard%20of.%20Sure%2C%20it%27s%20a%20little%20less%20action%20than%20something%20like%20audio%2C%20but%20it%20is%20still%20a%20useful%20element%20to%20semantically%20mark%20up%20many%20forms%20of%20dialogue." title="del.icio.us"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;title=A%20little%20more%20conversation%20with%20dialog" title="StumbleUpon"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F" title="Technorati"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.netvibes.com/share?title=A%20little%20more%20conversation%20with%20dialog&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F" title="Netvibes"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;t=A%20little%20more%20conversation%20with%20dialog" title="Facebook"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;title=A%20little%20more%20conversation%20with%20dialog&amp;annotation=Less%20action%2C%20more%20conversation.%20That%27s%20how%20that%20Elvis%20song%20went%2C%20right%3F%20OK%2C%20perhaps%20not.%20Regardless%2C%20the%20new%20dialog%20element%20introduced%20in%20HTML%205%20is%20all%20about%20marking%20up%20the%20conversation%2C%20and%20it%20uses%20a%20couple%20of%20elements%20you%20may%20have%20already%20heard%20of.%20Sure%2C%20it%27s%20a%20little%20less%20action%20than%20something%20like%20audio%2C%20but%20it%20is%20still%20a%20useful%20element%20to%20semantically%20mark%20up%20many%20forms%20of%20dialogue." title="Google Bookmarks"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=A%20little%20more%20conversation%20with%20dialog&amp;link=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F" title="FriendFeed"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;t=A%20little%20more%20conversation%20with%20dialog" title="HackerNews"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;title=A%20little%20more%20conversation%20with%20dialog&amp;source=HTML5+Doctor+helping+you+implement+HTML5+today&amp;summary=Less%20action%2C%20more%20conversation.%20That%27s%20how%20that%20Elvis%20song%20went%2C%20right%3F%20OK%2C%20perhaps%20not.%20Regardless%2C%20the%20new%20dialog%20element%20introduced%20in%20HTML%205%20is%20all%20about%20marking%20up%20the%20conversation%2C%20and%20it%20uses%20a%20couple%20of%20elements%20you%20may%20have%20already%20heard%20of.%20Sure%2C%20it%27s%20a%20little%20less%20action%20than%20something%20like%20audio%2C%20but%20it%20is%20still%20a%20useful%20element%20to%20semantically%20mark%20up%20many%20forms%20of%20dialogue." title="LinkedIn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;h=A%20little%20more%20conversation%20with%20dialog" title="NewsVine"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fhtml5doctor.com%2Fa-little-more-conversation-with-dialog%2F&amp;t=A%20little%20more%20conversation%20with%20dialog&amp;s=Less%20action%2C%20more%20conversation.%20That%27s%20how%20that%20Elvis%20song%20went%2C%20right%3F%20OK%2C%20perhaps%20not.%20Regardless%2C%20the%20new%20dialog%20element%20introduced%20in%20HTML%205%20is%20all%20about%20marking%20up%20the%20conversation%2C%20and%20it%20uses%20a%20couple%20of%20elements%20you%20may%20have%20already%20heard%20of.%20Sure%2C%20it%27s%20a%20little%20less%20action%20than%20something%20like%20audio%2C%20but%20it%20is%20still%20a%20useful%20element%20to%20semantically%20mark%20up%20many%20forms%20of%20dialogue." title="Tumblr"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
<p><a href="http://html5doctor.com/a-little-more-conversation-with-dialog/" rel="bookmark">A little more conversation with dialog</a> originally appeared on <a href="http://html5doctor.com">HTML5 Doctor</a> on August 12, 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://html5doctor.com/a-little-more-conversation-with-dialog/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Understanding aside</title>
		<link>http://html5doctor.com/understanding-aside/</link>
		<comments>http://html5doctor.com/understanding-aside/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 13:00:21 +0000</pubDate>
		<dc:creator>Mike Robinson</dc:creator>
				<category><![CDATA[Elements]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[aside]]></category>
		<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://html5doctor.com/?p=154</guid>
		<description><![CDATA[
			
				
			
		
HTML 5 offers a new element to mark additional information that can enhance an article but isn&#8217;t necessarily key to understanding it. However, in the interpretation of &#60;aside&#62; there lies confusion as to how it can be used, and with that there is demand for the Doctor to step up and clear the air. In [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;source=html5doctor&amp;style=normal&amp;service=is.gd" height="61" width="50" /><br />
			</a>
		</div>
<p><abbr title="Hypertext Mark-up Language">HTML</abbr> 5 offers a new element to mark additional information that can enhance an article but isn&#8217;t necessarily key to understanding it. However, in the interpretation of <code>&lt;aside&gt;</code> there lies confusion as to how it can be used, and with that there is demand for the Doctor to step up and clear the air. In this article I will look at what <code>&lt;aside&gt;</code> was created for, including sample uses and how not to use this useful, misunderstood element.<span id="more-154"></span></p>
<p>First, a look at how the HTML 5 specification defines <code>&lt;aside&gt;</code>:</p>
<blockquote><p>The aside element represents a section of a page that consists of content that is tangentially related to the content around the aside element, and which could be considered separate from that content. Such sections are often represented as sidebars in printed typography.</p></blockquote>
<p>What can often trip-up someone reading the specification is the use of the word &#8220;sidebar&#8221;. I will go into detail about this later in the article, for now you should be aware that what is said there might not quite mean what you first think. Content within an <code>&lt;aside&gt;</code> should be stand-alone information that is related to the article in context. If your <code>&lt;aside&gt;</code> content meets this requirement, then you have a useful element to not only semantically wrap that content but to even hook <abbr title="Cascading Style Sheet">CSS</abbr> styles on.</p>
<p>How strict should this relationship be? Very. Good <code>&lt;aside&gt;</code> content examples include pull-quotes, a glossary or even related links.</p>
<h2>Example Uses</h2>
<p>As suggested in the specification, a pull-quote is an excellent example of a piece of content that is separate from the main article body but still related. Points of interest highlighted.</p>
<pre><code>&lt;article&gt;
    &lt;header&gt;
        &lt;h1&gt;Lorem Ipsum Dolor Sit Amets&lt;/h1&gt;
    &lt;/header&gt;
    &lt;p&gt;Aliquam erat volutpat. Vestibulum eleifend pellentesque urna, at
    sodales est faucibus sit amet. Praesent in mi dui. <strong>&lt;q&gt;Aliquam sed
    bibendum nisl. Mauris pharetra enim sit amet ipsum dictum placerat. Sed
    lacinia pulvinar iaculis. Nam sit amet hendrerit purus.&lt;/q&gt;</strong> Sed a urna
    laoreet lorem pulvinar fermentum. Aenean vel luctus libero. Ut tincidunt
    metus sagittis ante viverra feugiat.&lt;/p&gt;
    <strong>&lt;aside&gt;
        &lt;q&gt;Mauris pharetra enim sit amet ipsum dictum placerat.&lt;/q&gt;
    &lt;/aside&gt;</strong>
    &lt;p&gt;Nulla quis lacus non quam luctus vestibulum. Pellentesque imperdiet
    risus gravida ante consectetur fermentum. Vivamus et est nec risus volutpat
    elementum. Ut faucibus, lectus consectetur volutpat dapibus, quam diam
    luctus enim, vitae mollis enim purus non ante.&lt;/p&gt;
&lt;/article&gt;</code></pre>
<p>For more about the <code>&lt;header&gt;</code> element see Richard&#8217;s article, &#8220;<a href="http://html5doctor.com/the-header-element/">The &lt;header&gt; Element</a>.</p>
<p>On a styled web page or, more common, in a printed article this would be represented visually as a highlighted quote to the side of the main article. This <code>&lt;aside&gt;</code> is related to the content but does not need to be part of the article body as it can be understood without the extra information, or in this case without the duplicate quote.</p>
<p>Another example would be a glossary of terminologies used in an article:</p>
<pre><code>&lt;article&gt;
    &lt;header&gt;
        &lt;h1&gt;Web Technologies&lt;/h1&gt;
    &lt;/header&gt;
    &lt;p&gt;Curabitur dignissim lorem a <strong>CSS</strong> diam posuere tempor. Nam hendrerit,
    eros vel condimentum tempor, ipsum justo cursus justo, quis vestibulum
    turpis turpis sit amet tellus. Quisque quis <strong>PHP</strong> magna eget ipsum faucibus
    bibendum at non diam. Sed sapien est, cursus ac ullamcorper id, egestas vel
    urna <strong>JavaScript</strong>. Nullam aliquam dolor vitae quam pharetra auctor.&lt;/p&gt;
    &lt;aside&gt;
        &lt;dl&gt;
            &lt;dt&gt;CSS&lt;/dt&gt;
            &lt;dd&gt;A set of standards for styling documents presented on the
            World Wide Web.&lt;/dd&gt;
            &lt;dt&gt;PHP&lt;/dt&gt;
            &lt;dd&gt;A server-side scripting language suited to dynamic HTML document
            generation for the web.&lt;/dd&gt;
            &lt;dt&gt;JavaScript&lt;/dt&gt;
            &lt;dd&gt;A client-side scripting language used for manipulating HTML documents
            within a browser.&lt;/dd&gt;
        &lt;/dl&gt;
    &lt;/aside&gt;
&lt;/article&gt;</code></pre>
<h2>Incorrect use of <code>&lt;aside&gt;</code></h2>
<p>It is easy to confuse this element for something it isn&#8217;t, and as mentioned earlier the definition of <code>&lt;aside&gt;</code> can trip-up a few developers. The most common misconception of how this element should be used is for the standard sidebar. While there is usually a degree of relation between sidebar content and the content in an article, it is not enough to be considered fit for an <code>&lt;aside&gt;</code>. Navigation, ads, search boxes, blogrolls and so on are not directly related to the article and therefore do not justify the use of an <code>&lt;aside&gt;</code>.</p>
<p>In the definition of <code>&lt;aside&gt;</code> it is key to note that it refers to sidebars in printed media, such as a magazine or leaflet. A &#8220;sidebar&#8221; in a magazine might contain additional notes on the article in context, translating this to HTML 5 would consider this an <code>&lt;aside&gt;</code>. If the printed article on <abbr title="Hypertext Pre-Processor">PHP</abbr> had an ad for &#8220;Superior, Cheap, Web Hosting&#8221; as a sidebar, this would not be classified as an <code>&lt;aside&gt;</code>. In such cases, look at other elements for more semantic mark-up.</p>
<h2>Closing Thoughts</h2>
<p>Like any HTML element, when used correctly the <code>&lt;aside&gt;</code> element can be very useful in semantically marking-up page content. An <code>&lt;aside&gt;</code> can be used to enhance an article with additional information, or highlighting parts that the reader may find interesting. Asides are stand-alone, non-essential as part of an article but when used correctly it can be an extra level of information for your content. Don&#8217;t try to force content into an <code>&lt;aside&gt;</code>, if it&#8217;s not tangentially related to the article then it shouldn&#8217;t be there. HTML 5 offers many new elements to mark-up your web pages, use them wisely.
<div id="crp_related">
<h3>Related Posts:</h3>
<ul>
<li><a href="http://html5doctor.com/aside-revisited/" rel="bookmark" class="crp_title">Aside Revisited</a></li>
<li><a href="http://html5doctor.com/you-can-still-use-div/" rel="bookmark" class="crp_title">You can still use div</a></li>
<li><a href="http://html5doctor.com/the-hgroup-element/" rel="bookmark" class="crp_title">The hgroup element</a></li>
<li><a href="http://html5doctor.com/the-dl-element/" rel="bookmark" class="crp_title">The dl element</a></li>
<li><a href="http://html5doctor.com/nav-element/" rel="bookmark" class="crp_title">Semantic navigation with the nav element</a></li>
</ul>
</div>
<p>Share and Save:</p>
<p>	<a rel="nofollow"  href="http://twitter.com/home?status=Understanding%20aside%20-%20http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F" title="Twitter"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;title=Understanding%20aside&amp;bodytext=HTML%205%20offers%20a%20new%20element%20to%20mark%20additional%20information%20that%20can%20enhance%20an%20article%20but%20isn%27t%20necessarily%20key%20to%20understanding%20it.%20However%2C%20in%20the%20interpretation%20of%20%26lt%3Baside%26gt%3B%20there%20lies%20confusion%20as%20to%20how%20it%20can%20be%20used%2C%20and%20with%20that%20there%20i" title="Digg"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F" title="Sphinn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;title=Understanding%20aside" title="Reddit"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;title=Understanding%20aside&amp;notes=HTML%205%20offers%20a%20new%20element%20to%20mark%20additional%20information%20that%20can%20enhance%20an%20article%20but%20isn%27t%20necessarily%20key%20to%20understanding%20it.%20However%2C%20in%20the%20interpretation%20of%20%26lt%3Baside%26gt%3B%20there%20lies%20confusion%20as%20to%20how%20it%20can%20be%20used%2C%20and%20with%20that%20there%20i" title="del.icio.us"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;title=Understanding%20aside" title="StumbleUpon"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F" title="Technorati"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.netvibes.com/share?title=Understanding%20aside&amp;url=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F" title="Netvibes"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;t=Understanding%20aside" title="Facebook"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;title=Understanding%20aside&amp;annotation=HTML%205%20offers%20a%20new%20element%20to%20mark%20additional%20information%20that%20can%20enhance%20an%20article%20but%20isn%27t%20necessarily%20key%20to%20understanding%20it.%20However%2C%20in%20the%20interpretation%20of%20%26lt%3Baside%26gt%3B%20there%20lies%20confusion%20as%20to%20how%20it%20can%20be%20used%2C%20and%20with%20that%20there%20i" title="Google Bookmarks"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Understanding%20aside&amp;link=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F" title="FriendFeed"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;t=Understanding%20aside" title="HackerNews"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;title=Understanding%20aside&amp;source=HTML5+Doctor+helping+you+implement+HTML5+today&amp;summary=HTML%205%20offers%20a%20new%20element%20to%20mark%20additional%20information%20that%20can%20enhance%20an%20article%20but%20isn%27t%20necessarily%20key%20to%20understanding%20it.%20However%2C%20in%20the%20interpretation%20of%20%26lt%3Baside%26gt%3B%20there%20lies%20confusion%20as%20to%20how%20it%20can%20be%20used%2C%20and%20with%20that%20there%20i" title="LinkedIn"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;h=Understanding%20aside" title="NewsVine"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a><br />
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fhtml5doctor.com%2Funderstanding-aside%2F&amp;t=Understanding%20aside&amp;s=HTML%205%20offers%20a%20new%20element%20to%20mark%20additional%20information%20that%20can%20enhance%20an%20article%20but%20isn%27t%20necessarily%20key%20to%20understanding%20it.%20However%2C%20in%20the%20interpretation%20of%20%26lt%3Baside%26gt%3B%20there%20lies%20confusion%20as%20to%20how%20it%20can%20be%20used%2C%20and%20with%20that%20there%20i" title="Tumblr"><img src="http://html5doctor.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></p>
<p><br/><br/></p>
<p><a href="http://html5doctor.com/understanding-aside/" rel="bookmark">Understanding aside</a> originally appeared on <a href="http://html5doctor.com">HTML5 Doctor</a> on June 19, 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://html5doctor.com/understanding-aside/feed/</wfw:commentRss>
		<slash:comments>57</slash:comments>
		</item>
	</channel>
</rss>
