HTML 5 is somewhat looser in its requirements for markup compared to XHTML, allowing a number of shortcuts:
Tags can be written uppercase, lowercase, or in mIxEd case.
You can drop a lot of closing tags: <
/li>, </dt>, </dd>, </tr>, </th>, </td>, </thead>, </tfoot>, </tbody>, </option>, </optgroup>, </p>(in most cases), </head>, </body>and </html>not required.Attribute values only need to be quoted if they contain spaces or some non-alphanumeric characters (such as a question mark). So <
div id=wrapper>is legitimate, as is <img src=assets/images/falls.jpg …>but <img alt=Angel Falls …>is not.No
typeattribute is required on scripts or stylesheets: a link to a CSS file can be written as <link rel=stylesheet href=styles.css>You can eliminate
http:at the start of links. <a href="http://www.example.com/index.html">becomes <a href=//example.com>(This is not specific to HTML5, but it is fun all the same, so long as you keep in mind the limitation that Barney points out in the comments below).
You will see these shortcuts used in some code examples on this blog in order to save space. If web development is new to you I strongly suggest that you stick to the basic rules for writing HTML code. (Your web page will continue to work fine, and the code will likely be easier for you to read). Once you’re familiar with HTML, you can start to introduce exceptions. You’ll also find that many text editors and IDEs, such as DreamWeaver will fight any attempts at shortcuts, automatically closing tags unless you change their preference settings.
Quite true, and a well-made point, Barney: thank you. My assumption is that most developers reading this blog will not be dealing with building https:// sites, but I should have noted that potential quirk.
Haha, that is actually incredibly clever.
![Prometheus: Collector's Edition (Bilingual) [Blu-ray 3D + Blu-ray + DVD + Digital Copy] Prometheus: Collector's Edition (Bilingual) [Blu-ray 3D + Blu-ray + DVD + Digital Copy]](http://ecx.images-amazon.com/images/I/5192I1rtYnL._SL160_.jpg)

