• Authoring guides
    • Related work:
      • The Web Developer’s Guide to HTML 5 by Lachlan Hunt
      • Wikibook, wikipedia article on HTML
      • Dave Raggett's tutorial
      • W3C schools tutorial with nifty live-preview
      • Google doctype with nifty integrated test results
      • Graded browser support by Yahoo!
    • Video, Audio, and Media in HTML 5
      • integrate test results a la Google doctype 
    • HTML 5 Forms
    • Making Web Pages with HTML
      • crash course / intro / primer
        • start with a plain text file... newsletter? web browser makes one big para
        • tag paragraphs: <p>...</p>, <br />
        • <title> - search listings
        • phrase markup: em, ...
        • links and images
          • internal
          • external
          • <img> (more later...)
          • footnote: base/@href
        • headings, <hr />
        • lists
        • <blockquote>
      • Structured Markup
        • elements and attributes, DOM trees
        • style
          • @id
          • @class
          • @style
          • <div>, <span>
          • <style> (for more detail, see...)
        • <html>, <head>, <body>, <link>
          • <address> (why not last modified?)
          • <nav>, <section>, <article>, <aside>, <header>, <footer>
        • <!DOCTYPE> ... example of quirks mode...
        • international: <bdo>, <ruby>, <rt>, <rp>, @lang, @dir
          • footnote: <meta charset>: cite charset detection doc
        • media-independence: <b>, <i>, <sub>, <sup>, 
      • images, media: <img ... />
        • @alt
        • <canvas> (for more detail, see...)
        • imagemaps
        • video, audio (for more detail, see...)
        • <figure>, <legend>
      • forms (for more detail, see...)
      • basic scripting, e.g. puzzle game (for more detail, see...)
        • graceful degredation (graded browser support)
      • Advanced text markup
        • preformatted text: <pre> 
          • ascii art
          • code sample
          • computer terminal interaction
        • tables
        • <dialog>
        • edits: <ins>, <del>
        • <mark>
        • <iframe>
    • URL mapping
    • charset detection