Search: html5
*Miscellaneous The Official Guide to HTML5 Boilerplate
Submitted by matt 7 days ago (more from net.tutsplus.com)In this screencast, Paul Irish meticulously reviews each page, and then further goes on to explain why and when you would use each snippet in your projects. The product of years of learning, this video is not to be missed! Even if you have no intention of using this template, you’ll still learn an array of helpful techniques.
*HTML/CSS Periodic Table of HTML5 Elements
Submitted by matt 14 days ago (more from joshduck.com)This table shows the 104 elements currently in the HTML5 working draft. Very handy!
*HTML/CSS HTML5 Reset - A simple set of best practices to get your HTML5 project going
Submitted by matt 23 days ago (more from html5reset.org)We usually start every HTML project with the same set of HTML and CSS templates. Now that modern browsers are starting to support some of the really useful parts of HTML5 and CSS3, it's time for an update, and we thought we'd put it out there for everyone to use.
*Programming What is a non-blocking script?
Submitted by matt 30 days ago (more from nczonline.net)There are basically two ways to achieve non-blocking (aka asynchronous) JavaScript downloading: create a script node dynamically and use the HTML5 async attribute of a tag. Combining this with the capability of parallel script downloads in newer browsers means that your page can take less time to render fully to the user. Try to avoid blocking JavaScript downloads whenever possible.
*HTML/CSS HTML5 Boilerplate - A rock-solid default for HTML5 awesome
Submitted by matt 30 days ago (more from html5boilerplate.com)After more than two years in iterative development, you get the best of the best practices baked in: cross-browser normalization, performance optimizations, even optional features like cross-domain ajax and flash. A starter apache .htaccess config file hooks you up with caching rules and preps your site to serve HTML5 video, use @font-face, and gzip.
*Programming MediaElement.js - HTML5 video player in CSS with Silverlight and Flash fallbacks
Submitted by matt 42 days ago (more from mediaelementjs.com)A JavaScript library to embed video in HTML5 formats with fallback in Silverlight or Flash.
*HTML/CSS Running your web applications offline with HTML5 AppCache
Submitted by matt 42 days ago (more from dev.opera.com)With the introduction of the W3C HTML5 application cache feature, it is possible to make your web applications run offline as well as online. This is where HTML5's new offline storage comes in. It defines a way to store files in a cache, so that when the user is offline, the browser still has access to the necessary files. These can be HTML, CSS or JavaScript files, or any other assets.
*HTML/CSS The Only HTML5 Resources You Need for Getting Up to Speed
Submitted by matt 52 days ago (more from sixrevisions.com)How will HTML5 change the jobs of web developers and web designers? Here are 15 web resources to help you on your quest in getting current about the impending technology that’s already being adopted by major web browsers and leveraged in large sites such as Google.
*HTML/CSS HTML5 Rocks: A resource for open web developers
Submitted by matt 79 days ago (more from html5rocks.com)Because HTML5 and its related technologies cover so much ground, it can be a real challenge to get up to speed on them. That’s why today we're sharing HTML5 Rocks, a great new resource for developers and teams looking to put HTML5 to use today, including more information on specific features and when to use them in your apps.
*HTML/CSS How HTML 5 link prefetching can make your site load faster with one line of code
Submitted by matt 99 days ago (more from keyboardy.com)One of the lesser-known jewels of HTML 5 is link prefetching. The idea is to extend the time-honored concept of image preloading to HTML content. The browser automatically downloads the page you specify in a background process as soon as the user’s computer is idle. When the user finally clicks a link to that page the browser serves it from the cache. Only supported by Firefox at this time.