Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Taking the plunge into HTML5

Ray Brown
September 29, 2011

Taking the plunge into HTML5

Ray Brown

September 29, 2011
Tweet

More Decks by Ray Brown

Other Decks in Programming

Transcript

  1. Come on in. The water’s fine. Taking the plunge into

    HTML5 by Ray Brown Owner, Bitmanic Jan 31st, 2011
  2. An introduction Web professional for five years Started out as

    a designer Focused on programming Landed smack dab in between the two
  3. From div to shiv IE (<9) doesn’t support HTML5 Luckily,

    we can add support via JS remysharp.com/html5-enabling-script No support for non-JS users
  4. A whole new world <div class=”entry”> <div class=”meta”> <h3>Title</h3> <h4>Jan

    31 2011</h4> </div> <p>Article content.</p> <p>More content.</p> </div> <article> <header> <h1>Title</h1> <time>Jan 31 2011</time> </header> <p>Article content.</p> <p>More content.</p> </article>
  5. New input types <input type=”email”> <input type=”url”> <input type=”number”> <input

    type=”range”> <input type=”date”> <input type=”search”> <input type=”color”>
  6. New form goodies <input placeholder=”Enter your name here.”> <input autofocus>

    <input required> Client-side form validation, too! (Well, not yet.)
  7. Block-level links This looks wrong, but it’s so, so right:

    <a href=”somepage.html”> <h1>Page title</h1> <p class=”excerpt”>Page excerpt!</p> </a>
  8. Dive Into HTML5 by Mark Pilgrim HTML5 for Web Designers

    by Jeremy Keith Hardboiled Web Design by Andy Clarke Countless blogs and online resources Read, read, read
  9. Dig into the HTML5 spec It’s a dry read, but

    also a definitive reference Lots of thorough examples dev.w3.org/html5/spec/ Read... some more
  10. Get comfy with HTML5’s new features Interact with other HTML5

    devs Keep an eye out for new tools Get your feet wet