HTML 5: Playing MP3 using Audio Tag

HTML 5 supports a new Audio tag, which allows you to play music. Here's a sample HTML Audio Tag: <audio controls="controls"> <source src="song.ogg" type="audio/ogg" /> <source src="song.mp3" type="audio/mp3" /> Your browser does not support the audio tag. </audio> Now you would think that it would be relatively simple to play music on the latest HTML … Continue reading HTML 5: Playing MP3 using Audio Tag

HTML5 Video Support in IE9 Mobile

Here is a summary of the blog post "HTML5 Video Support in IE9 Mobile" on Windows Phone Developer blog. HTML5 video is one of the most visible and easily adoptable features of the HTML5 standard. With the Mango release, Microsoft is adding support for the HTML5 <video> tag to the browser in a way that is standards-compliant, hardware-accelerated, and … Continue reading HTML5 Video Support in IE9 Mobile