<?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>Webmaster-Source &#187; HTML5</title>
	<atom:link href="https://www.webmaster-source.com/tag/html5/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webmaster-source.com</link>
	<description>Useful Resources For Webmasters</description>
	<lastBuildDate>Thu, 24 Aug 2017 02:01:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Illustrating Keyboard Shortcuts with the &lt;kbd&gt; Tag and a Bit of CSS</title>
		<link>https://www.webmaster-source.com/2013/12/27/illustrating-keyboard-shortcuts-kbd-tag/</link>
		<comments>https://www.webmaster-source.com/2013/12/27/illustrating-keyboard-shortcuts-kbd-tag/#comments</comments>
		<pubDate>Fri, 27 Dec 2013 13:16:27 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[(x)html]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=5259</guid>
		<description><![CDATA[The HTML spec has long had a (much underutilized) tag called kbd, which is intended to be used for marking up user input. For example, you could write something like this: The browser (by default) renders the kbd tags in a monotype font, just like code and pre. But if you&#8217;re already going to mark [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The HTML spec has long had a (much underutilized) tag called <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd">kbd</a>, which is intended to be used for marking up user input. For example, you could write something like this:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;p&gt;The most famous keyboard shortcut is probably &lt;kbd&gt;ctrl&lt;/kbd&gt;+&lt;kbd&gt;alt&lt;/kbd&gt;+&lt;kbd&gt;del&lt;/kbd&gt;.&lt;/p&gt;
</pre>
<p>The browser (by default) renders the <code>kbd</code> tags in a monotype font, just like <code>code</code> and <code>pre</code>. But if you&#8217;re already going to mark up keys like that for semantic reasons, why not apply a little styling and make it fancy? (I&#8217;ve seen a few sites do this, Stack Overflow being one of them.)</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  src="//www.webmaster-source.com/wp-content/uploads/2013/12/kbd-tag.png" alt=" Tag" width="491" height="44" class="aligncenter size-full wp-image-5260" /></p>
<pre class="brush: css; title: ; notranslate">
kbd {
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 0.1em 0.5em;
	margin: 0 0.2em;
	box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
	background-color: #f7f7f7;
}

</pre>
<p>While the tag isn&#8217;t solely meant for this use case—it can also be used for any user input, such as something you intend the reader to search on Google—I think it&#8217;s a great use. The <code>code</code> element tends to be used for the latter case more often, whether it&#8217;s considered appropriate or not, so styling it like so shouldn&#8217;t get in the way in most cases.</p>
<p>If you have need to display keyboard shortcuts periodically, it&#8217;s definitely a nice touch.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2013/12/27/illustrating-keyboard-shortcuts-kbd-tag/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordPress 3.6 to Have Audio/Video Support in Core</title>
		<link>https://www.webmaster-source.com/2013/04/10/wordpress-3-6-to-have-audiovideo-support-in-core/</link>
		<comments>https://www.webmaster-source.com/2013/04/10/wordpress-3-6-to-have-audiovideo-support-in-core/#comments</comments>
		<pubDate>Wed, 10 Apr 2013 10:16:01 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=5069</guid>
		<description><![CDATA[Here&#8217;s some great news from the WordPress development blog: WordPress 3.6 is going to have built-in support for audio/video playback. You will be able to upload a media file, and WordPress will handle playback with the MediaElement.js. Shortcodes will be available, as well as template tags for theming support. &#8230;there is now native support for [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-5065" alt="WordPress" src="//www.webmaster-source.com/wp-content/uploads/2013/04/wordpress-logo-type.png" width="249" height="57" />Here&#8217;s some great news from the WordPress development blog: WordPress 3.6 is going to have <a href="http://make.wordpress.org/core/2013/04/08/audio-video-support-in-core/">built-in support for audio/video playback</a>. You will be able to upload a media file, and WordPress will handle playback with the <a href="http://mediaelementjs.com/">MediaElement.js</a>. Shortcodes will be available, as well as template tags for theming support.</p>
<blockquote><p>&#8230;there is now native support for Audio and Video in core! There has been great support for embeds by way of <code>WP_Embed</code> and oEmbed providers for a while, but, if you wanted to play an MP3 from your Media Library, you had to install a plugin. Supporting audio and video in core gives bands, podcasters, vloggers, et al the ability to easily and beautifully expresses themselves through sounds and moving pictures without using an external service.</p></blockquote>
<p>This should go nicely with the coming changes to Post Formats—unless the plans have change, a UI based on <a href="http://www.webmaster-source.com/2012/02/06/crowd-favorites-wordpress-post-formats-admin-ui/">the one by Crowd Favorite</a> is going to be a part of the WordPress core, hopefully making post formats actually useful. (I&#8217;ve been using the Crowd Favorite plugin on my personal blog for awhile now, and it&#8217;s great.)</p>
<p>Another part I find interesting is the addition of embed handlers for common media files. You will be able to paste an URL to an AAC/MP3/etc. into a post and it will be seamlessly replaced by a media player, just like how oEmbed works.</p>
<p><a href="http://make.wordpress.org/core/2013/04/08/audio-video-support-in-core/">Audio / Video support in Core</a> [Make WordPress]</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2013/04/10/wordpress-3-6-to-have-audiovideo-support-in-core/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML and CSS: Develop with Tomorrow&#8217;s Standards Today by Brian P. Hogan</title>
		<link>https://www.webmaster-source.com/2013/04/03/html-and-css-develop-with-tomorrows-standards-today-by-brian-p-hogan/</link>
		<comments>https://www.webmaster-source.com/2013/04/03/html-and-css-develop-with-tomorrows-standards-today-by-brian-p-hogan/#comments</comments>
		<pubDate>Wed, 03 Apr 2013 11:04:49 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[(x)html]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=5045</guid>
		<description><![CDATA[I recently unearthed a review copy of a book that somehow got lost in the shuffle a couple of years ago, HTML5 and CSS3: Develop with Tomorrow&#8217;s Standards Today by Brian P. Hogan, which is too bad, since it&#8217;s one of the better books I&#8217;ve seen on the subject. It&#8217;s a comprehensive primer on the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-5046" alt="HTML5 and CSS3: Develop with Tomorrow's Standards Today" src="//www.webmaster-source.com/wp-content/uploads/2013/03/brianhogan-html5css3book.png" width="200" height="240" />I recently unearthed a review copy of a book that somehow got lost in the shuffle a couple of years ago,<a href="http://www.amazon.com/gp/product/1934356689/webmasterso0d-20"><em> HTML5 and CSS3: Develop with Tomorrow&#8217;s Standards Today</em></a> by Brian P. Hogan, which is too bad, since it&#8217;s one of the better books I&#8217;ve seen on the subject. It&#8217;s a comprehensive primer on the changes in HTML5 and CSS3. I enjoyed reading through the book after I unburied it last week.</p>
<p>It features a chapter on logically marking up page structure with the new semantic tags (<code>header</code>, <code>nav</code>, <code>section</code>, <code>article</code>, etc.), which explains the contexts they should be used in with a hands-on example of restructuring a blog without excessive divs. A lot of online tutorials make the error of suggesting the <code>aside</code> element for a blog sidebar, which the book helpfully points out as wrong. The <code>section</code> element is the proper tag for the job, as it denotes an arbitrary section of the page, whereas <code>aside</code> is for broken-out sections of your article content, such as pullquotes or diagrams.</p>
<p>From there the author moves on to some CSS3 tricks using newly-added selectors. He shows some simple methods to add zebra-striping to tables with pseudo-classes and add visible URLs to links via a print stylesheet with <code>:after</code>. There&#8217;s a brief section demonstrating media queries, as well some on the new JavaScript APIs—localStorage and history pushState, for example. There&#8217;s even a bit on using cache manifests to set up offline access.</p>
<p>Oh, and the deprecations. HTML5 deprecates a good many tags and attributes. There is a section listing those, as well as some modern alternatives, such as opening links in new windows without the deprecated <code>target</code> attribute. It can be done cleanly and semantically by using JavaScript, without impacting the user&#8217;s ability to middle-click a link and open a new tab&#8230;which far too many sites <em>still</em> do today. If you do that, you need to read this book just for that reason.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2013/04/03/html-and-css-develop-with-tomorrows-standards-today-by-brian-p-hogan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FillDisk Proof-of-Concept Demonstrates Flaw in Browsers&#8217; localStorage Implementations</title>
		<link>https://www.webmaster-source.com/2013/03/06/filldisk-proof-of-concept-demonstrates-flaw-in-browsers-localstorage-implementations/</link>
		<comments>https://www.webmaster-source.com/2013/03/06/filldisk-proof-of-concept-demonstrates-flaw-in-browsers-localstorage-implementations/#comments</comments>
		<pubDate>Wed, 06 Mar 2013 11:37:57 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=5029</guid>
		<description><![CDATA[HTML5&#8217;s localStorage API makes it possible for a web page to store 5-10MB of persistent data, much like cookies, but for more complex data—as you probably already know if you&#8217;re familiar with HTML5&#8217;s fancy new APIs. Feross Aboukhadijeh came up with an interesting and relevant proof-of-concept that&#8217;s been making its rounds on the internet: a [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>HTML5&#8217;s localStorage API makes it possible for a web page to store 5-10MB of persistent data, much like cookies, but for more complex data—as you probably already know if you&#8217;re familiar with HTML5&#8217;s fancy new APIs. Feross Aboukhadijeh came up with an interesting and relevant proof-of-concept that&#8217;s been making its rounds on the internet: <a href="http://feross.org/fill-disk/">a little something called FillDisk.</a></p>
<p>Apparently Chrome, Safari, Internet Explorer and Opera all have a flaw in their localStorage implementations that allow a website to use a little trick to fill your hard disk up. They allow each subdomain of an origin to have its own storage pool, so you can bypass the quota by looping around and storing data for tons of subdomains. FillDisk manages 1GB per 16 seconds on the author&#8217;s MacBook Pro. Firefox gets it right and sets the quota for the entire second-level domain.</p>
<p>Now Mozilla&#8217;s solution doesn&#8217;t exactly seem optimal to me. There are plenty of sites that allow users to host things on subdomains, GitHub Pages being a noteworthy example. It seems to me that a more equitable solution is to extend the partial solution Firefox implements and prompt the user to allow the pool to be enlarged when needed.</p>
<p><a href="http://feross.org/fill-disk/">Introducing the HTML5 Hard Disk Filler™ API</a> [Feross.org]</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2013/03/06/filldisk-proof-of-concept-demonstrates-flaw-in-browsers-localstorage-implementations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BrowserQuest: A Massively Multiplayer Game in HTML5 and JavaScript</title>
		<link>https://www.webmaster-source.com/2012/03/29/browserquest-a-massively-multiplayer-game-in-html5-and-javascript/</link>
		<comments>https://www.webmaster-source.com/2012/03/29/browserquest-a-massively-multiplayer-game-in-html5-and-javascript/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 11:56:49 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[MMORPGs]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4577</guid>
		<description><![CDATA[Imagine a massively multiplayer game using HTML5 features, such as Canvas and WebSocket, that works in any modern browser. Ridiculous, you say? Then you haven&#8217;t seen BrowserQuest yet. The clever demonstration, featured on the Mozilla Hacks blog, works on both desktops and mobile devices, in all it&#8217;s scrolling two-dimensional glory. It&#8217;s rendered on an HTML5 [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Imagine a massively multiplayer game using HTML5 features, such as Canvas and WebSocket, that works in any modern browser. Ridiculous, you say? Then you haven&#8217;t seen <a href="http://browserquest.mozilla.org/">BrowserQuest</a> yet.</p>
<p style="text-align: center;"><a href="https://hacks.mozilla.org/2012/03/browserquest/"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4578 imgborder" title="BrowserQuest" src="//www.webmaster-source.com/wp-content/uploads/2012/03/browserquest.jpg" alt="" width="600" height="307" /></a></p>
<p>The clever demonstration, <a href="https://hacks.mozilla.org/2012/03/browserquest/">featured on the Mozilla Hacks blog</a>, works on both desktops and mobile devices, in all it&#8217;s scrolling two-dimensional glory. It&#8217;s rendered on an HTML5 Canvas, uses WebSockets to stay in constant communication with the Node.js server, saves your progress with the local storage API, preloads the map in a different thread with Web Workers, plays sound with HTML5 Audio and even uses media queries to adapt to different devices. Oh, and the source code is all available on <a href="https://github.com/mozilla/BrowserQuest">GitHub</a>.</p>
<p>The game is largely exploring, hacking-and-slashing monsters along the way, while you collect achievements. It has chat, and you can find new items to replace your default gear, but no player-versus-player combat.</p>
<p>My laptop&#8217;s fans stayed far quieter than they would while playing a similar Flash game, which I would say says something about the level of optimization browsers have done when compared to OS X/Linux versions of Flash.</p>
<p>I think we&#8217;ll be seeing more games built this way in the near future, and 3D games once WebGL reaches the same level of maturity and browser support.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2012/03/29/browserquest-a-massively-multiplayer-game-in-html5-and-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Data Attributes</title>
		<link>https://www.webmaster-source.com/2011/11/21/html5-data-attributes/</link>
		<comments>https://www.webmaster-source.com/2011/11/21/html5-data-attributes/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 11:31:38 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[(x)html]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4403</guid>
		<description><![CDATA[Have you ever looked at the HTML snippet for Twitter&#8217;s Tweet button and wondered what those data-something="loremipsum" attributes were? I did too, and after a bit of Google searching, I found a post by John Resig (the creator of jQuery) that explains that they&#8217;re something called data attributes. A new feature in HTML5, they provide [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Have you ever looked at the HTML snippet for Twitter&#8217;s <a href="https://twitter.com/about/resources/tweetbutton">Tweet button</a> and wondered what those <code>data-something="loremipsum"</code> attributes were?</p>
<pre class="brush: xml; title: ; notranslate">
&lt;a href=&quot;https://twitter.com/share&quot; data-count=&quot;vertical&quot; data-via=&quot;redwall_hp&quot;&gt;Tweet&lt;/a&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;//platform.twitter.com/widgets.js&quot;&gt;&lt;/script&gt;
</pre>
<p>I did too, and after a bit of Google searching, I found a post by John Resig (the creator of jQuery) that explains that they&#8217;re something <a href="http://ejohn.org/blog/html-5-data-attributes/">called data attributes</a>.</p>
<p>A new feature in HTML5, they provide a way to embed data in an element and access it from a script. (An accompanying JavaScript API makes it very easy to retrieve the data.)</p>
<p><a href="http://ejohn.org/blog/html-5-data-attributes/">HTML 5 data- Attributes</a> [John Resig]</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/11/21/html5-data-attributes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dive Into HTML5</title>
		<link>https://www.webmaster-source.com/2011/05/16/dive-into-html5/</link>
		<comments>https://www.webmaster-source.com/2011/05/16/dive-into-html5/#comments</comments>
		<pubDate>Mon, 16 May 2011 11:43:33 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[(x)html]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4016</guid>
		<description><![CDATA[Looking to bring your HTML skills up-to-date, now that HTML5 support is growing in modern browsers? Mark Pilgrim has a nice online book by the name of Dive Into HTML5 that covers most of the big new things. It is also available in print, published by O&#8217;Reilly, under the name HTML5: Up &#38; Running. The [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Looking to bring your HTML skills up-to-date, now that HTML5 support is growing in modern browsers? Mark Pilgrim has a nice online book by the name of <a href="http://diveintohtml5.org/">Dive Into HTML5</a> that covers most of the big new things. It is also available in print, published by O&#8217;Reilly, under the name <a href="http://www.amazon.com/HTML5-Up-Running-Mark-Pilgrim/dp/0596806027/webmasterso0d-20">HTML5: Up &amp; Running</a>.</p>
<p>The book, both the free online version and the print copy, cover things like HTML5 video, offline storage, detecting browser support of HTML5 features with JavaScript, as well as an overview of the new elements. An interesting chapter on the history of HTML is also included.</p>
<p>It&#8217;s a short book, not intended to teach newbies about HTML so much as to bring adepts up to speed with the latest advancements.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/05/16/dive-into-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Angry Birds Comes to the Web, in HTML5</title>
		<link>https://www.webmaster-source.com/2011/05/13/angry-birds-comes-to-the-web-in-html5/</link>
		<comments>https://www.webmaster-source.com/2011/05/13/angry-birds-comes-to-the-web-in-html5/#comments</comments>
		<pubDate>Fri, 13 May 2011 12:09:57 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4071</guid>
		<description><![CDATA[Rovio, on the 10th of May, released an unexpected new version of their popular Angry Birds game. Previously available on iOS, Android and OS X, Angry Birds is now available on the web. You can find it in the Chrome Web Store, or at this URL. It&#8217;s currently in public beta, and is free for [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Rovio, on the 10th of May, released an unexpected new version of their popular <em>Angry Birds</em> game. Previously available on iOS, Android and OS X, <em>Angry Birds</em> is now available on the web.</p>
<p>You can find it in the <a href="https://chrome.google.com/webstore/detail/aknpkdffaafgjchaibgeefbgmgeghloj">Chrome Web Store</a>, or at <a href="http://chrome.angrybirds.com/">this URL</a>. It&#8217;s currently in public beta, and is free for the time being at least. (It also runs in Firefox 4.)</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4072 imgborder" title="Angry Birds...in HTML5" src="//www.webmaster-source.com/wp-content/uploads/angry-birds-html5.jpg" alt="" width="600" height="334" /></p>
<p>The game is 100% HTML5 and JavaScript, and it runs very smoothly all things considered. There were a couple of quirks when I tried it, but they are likely just bugs for Rovio to work out and not a product of the platform. It really puts the myth that Flash is necessary for browser games to death. (Hopefully in the future we will see GUI composing tools along the lines of Adobe Flash that export to plain HTML5 instead of a proprietary format.)</p>
<p>If that&#8217;s not enough of an <em>Angry Birds</em> fix for you, how about a cover version of the theme <a href="http://www.youtube.com/watch?v=7UCm6uyzNE8">with real instruments</a>?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/05/13/angry-birds-comes-to-the-web-in-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Syncing Content With HTML5 Video or Audio</title>
		<link>https://www.webmaster-source.com/2011/04/11/syncing-content-with-html5-video-or-audio/</link>
		<comments>https://www.webmaster-source.com/2011/04/11/syncing-content-with-html5-video-or-audio/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 11:25:55 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3980</guid>
		<description><![CDATA[This is one of the coolest Smashing Magazine articles I have seen in awhile: Syncing Content With HTML5 Video. Using the generic HTLM5 video and audio elements and a bit of JavaScript, the timeupdate event in particular, you can synchronize script events to the media playback. The timeupdate event returns the media&#8217;s timecode, which you [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This is one of the coolest Smashing Magazine articles I have seen in awhile: <a href="http://www.smashingmagazine.com/2011/03/11/syncing-content-with-html5-video/">Syncing Content With HTML5 Video</a>.</p>
<p>Using the generic HTLM5 video and audio elements and a bit of JavaScript, the timeupdate event in particular, you can synchronize script events to the media playback. The timeupdate event returns the media&#8217;s timecode, which you can then use to fire off DOM changes.</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script&gt;
(function(){
    var v = document.getElementsByTagName('video')[0]
    var t = document.getElementById('time');
    v.addEventListener('timeupdate',function(event){
      t.innerHTML = v.currentTime;
    },false);
  })();
&lt;/script&gt;
</pre>
<p>There are so many applications where this could be useful. You could supply show notes synchronized to a podcast, for instance, or additional information to supplement a video tutorial.</p>
<p><a href="http://www.smashingmagazine.com/2011/03/11/syncing-content-with-html5-video/">Syncing Content With HTML5 Video</a> [Smashing Magazine]</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/04/11/syncing-content-with-html5-video-or-audio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Gets a Logo</title>
		<link>https://www.webmaster-source.com/2011/01/21/html5-gets-a-logo/</link>
		<comments>https://www.webmaster-source.com/2011/01/21/html5-gets-a-logo/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 11:41:23 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[(x)html]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Logos]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3859</guid>
		<description><![CDATA[The W3C has put up a microsite with the new logo for HTML5. It looks pretty good, certainly better than its predecessors, even if it does have a bit of the &#8220;Web 2.0&#8243; look that is finally starting to lose its novelty. I like that they kept the gradients to a minimum, which is starting [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The W3C has put up a microsite with <a href="http://www.w3.org/html/logo/">the new logo for HTML5</a>. It looks pretty good, certainly better than its predecessors, even if it does have a bit of the &#8220;Web 2.0&#8243; look that is finally starting to lose its novelty. I like that they kept the gradients to a minimum, which is starting to become more common in the aftermath of the glossy &#8220;Web 2.0&#8243; style.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3860 imgborder" title="HTML5 Logo" src="//www.webmaster-source.com/wp-content/uploads/w3c-html5-logo.png" alt="" width="580" height="324" /></p>
<p>You can pick up SVG and PNG versions of the icon there, as well as T-Shirts featuring the logo&#8230;and free stickers if you live in the U.S. and have some spare postage stamps laying around.</p>
<p><a href="http://www.webmonkey.com/2011/01/html5-gains-logo-loses-meaning/">Webmonkey</a> brings up an interesting, and troubling, point about the HTML5 Logo site. The FAQ calls the logo a &#8220;general-purpose visual identity for a broad set of open web technologies, including HTML5, CSS, SVG, WOFF, and others.&#8221;</p>
<blockquote><p>It doesn’t really matter if the New York Times thinks CSS 3 or SVG  are HTML5, but we’d like to think that at least the organization in  charge of describing what is, and is not, HTML5 would make some effort  to distinguish between tools. Lumping everything together is as silly as  a carpenter referring to every tool in their toolkit as “a hammer.”</p></blockquote>
<p>That doesn&#8217;t sound very good to me. Is &#8220;HTML5&#8243; becoming the new buzzword to replace &#8220;Web 2.0,&#8221; and sanctioned by its own standards body?</p>
<p><strong>Update:</strong> And now it sounds like <a href="http://arstechnica.com/web/news/2011/01/html-to-lose-the-version-number.ars?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss">the HTML spec is no longer going to have specific version numbers</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/01/21/html5-gets-a-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: www.webmaster-source.com @ 2026-04-29 11:33:24 by W3 Total Cache
-->