1. The Specification

  2. Design principles

  3. Doctype

  4. Character encoding

  5. Serialisation

  6. Syntax

  7. Error handling

    This specification defines the parsing rules for HTML documents, whether they are syntactically correct or not.

    Parsing HTML documents
  8. APIs

  9. Audio

    <audio src="song.mp3" controls autobuffer>
    <-- fallback content -->
    </audio>
    example
  10. Video

    <video controls width="200" height="200">
    <source type="video/ogg" src="movie.ogg">
    <source type="video/mp4" src="movie.mp4">
    <-- fallback content -->
    </video>
    example
  11. Canvas

    <canvas width="200" height="200">
    <-- fallback content -->
    </canvas>
    example
  12. Forms

  13. Next...

    Semantics