<?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>IdealStyleAndDesign.com &#187; HTML5</title>
	<atom:link href="http://www.idealstyleanddesign.com/tag/html5/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.idealstyleanddesign.com</link>
	<description>Ideal Style And Design</description>
	<lastBuildDate>Wed, 21 Sep 2011 11:20:46 +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>Fix Inserted HTML5 Content with HTML5 innerShiv</title>
		<link>http://www.idealstyleanddesign.com/fix-inserted-html5-content-with-html5%c2%a0innershiv/</link>
		<comments>http://www.idealstyleanddesign.com/fix-inserted-html5-content-with-html5%c2%a0innershiv/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 12:48:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS Styling]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[HTML5 innerShiv]]></category>
		<category><![CDATA[Inserted]]></category>

		<guid isPermaLink="false">http://www.idealstyleanddesign.com/fix-inserted-html5-content-with-html5%c2%a0innershiv/</guid>
		<description><![CDATA[When working with HTML5 today, many of you know that you&#8217;ll need to include the &#8220;HTML5 shiv&#8221; to ensure that CSS will recognize and be able to style those elements in browsers that aren&#8217;t yet hip to HTML5.
&#60;!--[if IE]&#62;
  &#60;script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"&#62;&#60;/script&#62;
&#60;![endif]--&#62;
Credit for that to Remy Sharp, Jon Neal, John Resig and anybody else who [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>When working with HTML5 today, many of you know that you&#8217;ll need to include the &#8220;HTML5 shiv&#8221; to ensure that CSS will recognize and be able to style those elements in browsers that aren&#8217;t yet hip to HTML5.</p>
<pre><code class="html">&lt;!--[if IE]&gt;
  &lt;script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"&gt;&lt;/script&gt;
&lt;![endif]--&gt;</code></pre>
<p>Credit for that to Remy Sharp, Jon Neal, John Resig and anybody else who contributed to that idea. Also for the benefit of those non-hip browsers, it&#8217;s best to reset many of the HTML5 elements to block-level as they should be:</p>
<pre><code class="css">article, aside, figure, footer, header, hgroup,
menu, nav, section { display: block; }</code></pre>
<p>Now we&#8217;re all set to use and style HTML5 elements. But wait! What happens if we dynamically add HTML5 to the page via JavaScript.</p>
<pre><code class="javascript">var s = document.createElement('div');
s.innerHTML = "&lt;section&gt;Hi!&lt;/section&gt;";
document.body.appendChild(s);</code></pre>
<p>Or in jQuery:</p>
<pre><code class="javascript">$("body").append("&lt;section&gt;Hi!&lt;/section&gt;");</code></pre>
<p>Hip browsers do fine, but Internet Explorer will once again not recognize the new element and not apply CSS to it.</p>
<div class="image-wrap"> <img src="http://cdn.css-tricks.com/wp-content/uploads/2010/08/html5issues.png" alt="" title="html5issues" width="467" height="150" class="alignnone size-full wp-image-6973" /></div>
<p>Joe Bartlett has written a great work-around to the problem called HTML5 innerShiv and I thought more people should be aware of it.</p>
<p><span id="more-6869"></span></p>
<h3>Using it</h3>
<p>Please note that this script does not require jQuery. It&#8217;s just vanilla JavaScript and will work with any library or library at all.</p>
<h4>1. Download</h4>
<p>Download the script and insert it onto your page. Or copy and paste the script into other JavaScript you are already loading if you want to avoid an extra HTTP Request.</p>
<h4>2. Wrap all HTML content in innerShiv function before inserting</h4>
<p>Here is the same jQuery example as above, made to work using innerShiv:</p>
<pre><code class="javascript">$("body").append(innerShiv("&lt;section&gt;Hi!&lt;/section&gt;"));</code></pre>
<div class="image-wrap"> <img src="http://cdn.css-tricks.com/wp-content/uploads/2010/08/html5fixed.png" alt="" title="html5fixed" width="441" height="158" class="alignnone size-full wp-image-6974" /></div>
<p>Quick demo.</p>
<p>Remember to check out Joe&#8217;s page, which does a better job of explaining things.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.idealstyleanddesign.com/fix-inserted-html5-content-with-html5%c2%a0innershiv/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Earliest Web Doc is HTML5</title>
		<link>http://www.idealstyleanddesign.com/earliest-web-doc-is-html5/</link>
		<comments>http://www.idealstyleanddesign.com/earliest-web-doc-is-html5/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 12:49:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Earliest]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.idealstyleanddesign.com/earliest-web-doc-is-html5/</guid>
		<description><![CDATA[
			
				


&#8220;Links and Anchors,&#8221; the very first document published on the web, is almost valid HTML5.    Hat tip: Jeremy Keith.    P.S. Got yours yet?

via zeldman.com


  Posted via email   from Does This Zeldman Make My Posterous Look Fat?  



			
				
	
	
	
	
	
	
	
	
	



No related posts.
Related posts brought to you by Yet [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="">
			<br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zeldman.com%2F2010%2F08%2F06%2Fearliest-web-doc-is-html5-2%2F&amp;source=zeldman&amp;style=normal" height="61" width="50" /></p></div>
<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<blockquote class="posterous_short_quote"><p>&#8220;Links and Anchors,&#8221; the very first document published on the web, is almost valid HTML5.    Hat tip: Jeremy Keith.    P.S. Got yours yet?</p>
</blockquote>
<div class="posterous_quote_citation">via zeldman.com</div>
</p>
</div>
<p style="font-size: 10px;">  Posted via email   from Does This Zeldman Make My Posterous Look Fat?  </p>
</p>
</div>
<div class="tweetmeme_button" style="">
			<br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zeldman.com%2F2010%2F08%2F06%2Fearliest-web-doc-is-html5-2%2F&amp;source=zeldman&amp;style=normal" height="61" width="50" /></p></div>
<p>	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/posterous.png" title="Posterous" alt="Posterous" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></p>
<p><br/><br/></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.idealstyleanddesign.com/earliest-web-doc-is-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SlideShowPro adds HTML5</title>
		<link>http://www.idealstyleanddesign.com/slideshowpro-adds-html5/</link>
		<comments>http://www.idealstyleanddesign.com/slideshowpro-adds-html5/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 16:08:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[adds]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[SlideShowPro]]></category>

		<guid isPermaLink="false">http://www.idealstyleanddesign.com/slideshowpro-adds-html5/</guid>
		<description><![CDATA[
			
				

Most of us web folk are hybrids of one sort or another, but Todd Dominey was one of the first web designers to combine exceptional graphic design talent with serious mastery of code.
Being so good at both design and development that you could easily earn a fine living doing just one of them is still [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="">
			<br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zeldman.com%2F2010%2F07%2F03%2Fslideshowpro-adds-html5%2F&amp;source=zeldman&amp;style=normal" height="61" width="50" /></p></div>
<p><img class="lede" width="490" src='http://www.zeldman.com/wp-content/4731069726_6a38c04942.jpg' alt='Todd Dominey at Happy Cog.' /></p>
<p class="intro"><span class="drop">M</span>ost of us web folk are hybrids of one sort or another, but Todd Dominey was one of the first web designers to combine exceptional graphic design talent with serious mastery of code.</p>
<p>Being so good at both design and development that you could easily earn a fine living doing just one of them is still rare, although it looks like the future of our profession. One of the first serious designers to embrace web standards, Todd was also one of the few who did so while continuing to achieve recognition for his work in Flash. (Daniel Mall, who came later, is another.) </p>
<p>Finally, Todd was one of the firstalong with 37signals and Coudal Partnersto abandon an enviably successful client services career in favor of full-time product development, inspiring a generation to do likewise, and helping bring us to our current world of web apps and startups.</p>
<h3>A personal project that became an empire</h3>
<p>In Todd&#8217;s case, the product was SlideShowPro, a project he designed for himself, which has grown to become the web&#8217;s most popular photo and video slideshow and gallery viewer. When you visit a photographer&#8217;s portfolio website, there&#8217;s an excellent chance that SlideShowPro powers its dynamic photo viewing experience. The same is true for the photo and video gallery features of many major newspaper and magazine sites, quite possibly including your favorites.</p>
<p><img class="lede" src="/i/product-page-slate-490.jpg" alt="SlideShowPro" /></p>
<p>But deliberate lack of Flash support in the iPad and iPhone, while lauded here on February 1, 2010 as a win for accessible, standards-based design (&#8220;Not because Flash is bad, but because the increasing popularity of devices that dont support Flash is going to force recalcitrant web developers to<em> build the semantic HTML layer first&#8221;</em>), presented a serious problem for developers who use SlideShowPro and readers who enjoy browsing dynamic photo and video galleries.</p>
<p>Mr Dominey has now solved that problem:</p>
<blockquote>
<p>SlideShowPro Mobile is an entirely new media player built using HTML5 that doesnt require the Flash Player plugin and can serve as a fallback for users accessing your web sites using these devices. But its not just any fallback  its specially designed for touch interfaces and smaller screen sizes. So it looks nothing like the SlideShowPro player and more like a native application thats intuitive, easy to use, and just feels right.</p>
<p>The best part though is that because SlideShowPro Director (which will be required) publishes the mobile content, youll be able to provide the mobile alternative by simply updating the Flash Player embed code in your HTML documents. And just like when using the SlideShowPro player, because Director is behind the scenes, all your photos will be published for the target dimensions of these devices  which gives your users top quality, first generation images. The mobile player will automatically load whatever content is assigned to the Flash version, so the same content will be accessible to any browser accessing your web site.</p>
</blockquote>
<p>A public beta will be released in the next weeks. Meanwhile, there is a video demo. There&#8217;s also an excellent Question and Answer page that answers questions you may have, whether you&#8217;re a SlideShow Pro customer or not. For instance:</p>
<blockquote><p><strong>Why mobile? Why not desktop?</strong></p>
<p>We believe that (on the desktop) Flash is still the best delivery method for photo/video galleries and slideshows for it provides the most consistent user experience across all browsers and the broadest range of playback and customization options. As HTML5 support matures across all desktop browsers, well continue to look into alternate presentation options.
</p>
</blockquote>
<p>Into the future!</p>
<div class="tweetmeme_button" style="">
			<br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zeldman.com%2F2010%2F07%2F03%2Fslideshowpro-adds-html5%2F&amp;source=zeldman&amp;style=normal" height="61" width="50" /></p></div>
<p>	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></p>
<p><br/><br/></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.idealstyleanddesign.com/slideshowpro-adds-html5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Episode 2: HTML5 For Designers</title>
		<link>http://www.idealstyleanddesign.com/episode-2-html5-for-designers/</link>
		<comments>http://www.idealstyleanddesign.com/episode-2-html5-for-designers/#comments</comments>
		<pubDate>Mon, 10 May 2010 16:08:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Designers]]></category>
		<category><![CDATA[Episode]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.idealstyleanddesign.com/index.php/2010/05/episode-2-html5-for-designers/</guid>
		<description><![CDATA[
			
				

Now online for your listening and viewing pleasure: in Episode 2 of The Big Web Show, Dan and I chat with Jeremy Keithdesigner, developer, content creator, agency co-founder, speaker extraordinaire, and author of HTML5 for Web Designers (A Book Apart, 2010). In this hour-long video podcast, we explore the goals, process, and inspiration behind the [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="">
			<br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zeldman.com%2F2010%2F05%2F10%2Fepisode-2-html5-for-designers%2F&amp;source=zeldman&amp;style=normal" height="61" width="50" /></p></div>
<p><img class="lede" src="/i/bwep23up.jpg" alt="Zeldman, Dan Benjamin, and Jeremy Keith discuss HTML5 on The Big Web Show." /></p>
<p class="intro"><span class="drop">N</span>ow online for your listening and viewing pleasure: in Episode 2 of The Big Web Show, Dan and I chat with Jeremy Keithdesigner, developer, content creator, agency co-founder, speaker extraordinaire, and author of <cite>HTML5 for Web Designers</cite> (A Book Apart, 2010). In this hour-long video podcast, we explore the goals, process, and inspiration behind the book, and discuss what HTML5 means for web creators and consumersfrom semantics to strategy, accessibility to implementation.</p>
<ul>
<li>The Big Web Show Episode 2: HTML5 For Web Designers</li>
<li>The Big Web Show Episode 1: Web Fonts</li>
<li><cite>HTML5 For Web Designers</cite> by Jeremy Keith (A Book Apart, June, 2010)</li>
<li><cite>Bulletproof Ajax</cite> by Jeremy Keith (New Riders)</li>
<li><cite>DOM Scripting</cite> by Jeremy Keith (Friends of Ed)</li>
<li>Jeremy Keith&#8217;s Huffduffer (&#8220;Create your own podcast&#8221;)</li>
<li>Adactio: Journal  Jeremy Keith&#8217;s blog</li>
<li>Jeremy Keith on Twitter</li>
</ul>
<hr />
<p>	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></p>
<p><br/><br/></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.idealstyleanddesign.com/episode-2-html5-for-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 For Web Designers</title>
		<link>http://www.idealstyleanddesign.com/html5-for-web-designers/</link>
		<comments>http://www.idealstyleanddesign.com/html5-for-web-designers/#comments</comments>
		<pubDate>Tue, 04 May 2010 15:45:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Designers]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.idealstyleanddesign.com/index.php/2010/05/html5-for-web-designers/</guid>
		<description><![CDATA[
			
				

When Mandy Brown, Jason Santa Maria and I formed A Book Apart, one topic burned uppermost in our minds, and there was only one author for the job.
Nothing else, not even real fonts or CSS3, has stirred the standards-based design community like the imminent arrival of HTML5. Born out of dissatisfaction with the pacing and [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="">
			<br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zeldman.com%2F2010%2F05%2F04%2Fhtml5-for-web-designers%2F&amp;source=zeldman&amp;style=normal" height="61" width="50" /></p></div>
<p><img class="lede" src="/i/h5ml.png" alt="HTML5 For Web Designers, by Jeremy Keith." /></p>
<p class="intro"><span class="drop">W</span>hen Mandy Brown, Jason Santa Maria and I formed <br />A Book Apart, one topic burned uppermost in our minds, and there was only one author for the job.</p>
<p>Nothing else, not even real fonts or CSS3, has stirred the standards-based design community like the imminent arrival of HTML5. Born out of dissatisfaction with the pacing and politics of the W3C, and conceived for a web of applications (not just documents), this new edition of the webs lingua franca has in equal measure excited, angered, and confused the web design community.</p>
<div class="inset" style="max-width: 150px;">
<img src="/i/HTMLForDesigners.png" alt="HTML5 For Web Designers" /></p>
<p class="caption" style="font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: italic;">Win free copies of HTML5 For Web Designers on Gowalla!</p>
</div>
<p>Just as he did with the DOM and JavaScript, Jeremy Keith has a unique ability to illuminate HTML5 and cut straight to what matters to accessible, standards-based designer-developers. And he does it in this book, using only as many words and pictures as are needed.</p>
<div class="inset" style="float: right; max-width: 150px; margin-left: 20px; margin-right: 0;"><img src="/i/tbws-angle-100.gif" alt="The Big Web Show" /></p>
<p class="caption" style="font-family: Helvetica, Arial, sans-serif; font-size: 12px; font-style: italic;">Watch Jeremy Keith discuss HTML5 with Dan Benjamin and me live on The Big Web Show this Thursday at 1:00 PM Eastern.</p>
</div>
<p>There are other books about HTML5, and there will be many more. There will be 500 page technical books for application developers, whose needs drove much of HTML5s development. There will be even longer secret books for browser makers, addressing technical challenges that you and I are blessed never to need to think about.</p>
<p>But this is a book for youyou who create web content, who mark up web pages for sense and semantics, and who design accessible interfaces and experiences. Call it your user guide to HTML5. Its goalone it will share with every title in the forthcoming A Book Apart catalogis to shed clear light on a tricky subject, and do it fast, so you can get back to work.</p>
<hr />
<p><img src="http://www.zeldman.com/i/neon100.gif" alt="" class="inset" /></p>
<p>4 May 2010<br />
Jeffrey Zeldman, Publisher<br />
A Book Apart &#8220;for people who make websites&#8221;<br />
In Association with A List Apart<br />
An imprint of Happy Cog</p>
<p><em>The present-day content producer refuses to die.</em></p>
<h3>And don&#8217;t miss&#8230;</h3>
<ul>
<li>Read Chapter One free in today&#8217;s issue of <cite>A List Apart!</cite></li>
<li>The author, Mr Jeremy Keith himself, shares his thoughts!</li>
<li>Creative director Jason Santa Maria discusses the design  of A Book Apart!</li>
<li>Editor Mandy Brown discusses the business side of A Book Apart!</li>
</ul>
<hr />
<p>	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /><br />
	<img src="http://www.zeldman.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></p>
<p><br/><br/></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.idealstyleanddesign.com/html5-for-web-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

