HTML5 elements
Safe to use with polyfillhtmlAll current browsers, except Internet Explorer 8 and below, support the use of the new HTML5 elements (e.g., <header>, <footer>, <nav>, <main>, <article>, <section>, etc.).
- Verdict
- Safe to use
- Category
- HTML features
- Browser support
- Can I Use
- Works in
- IE9+
Should you use HTML5 elements in 2026?
However, they aren't always mapped to accessibility APIs as the HTML5 spec requires. Currently only Firefox does this, but other browsers are implementing the accessibility APIs quickly. In the meantime, Accessifyhtml5.js maps them correctly.
The notes below only apply to Internet Explorer 8 and below:
The html5shiv enables you to use the new HTML5 elements in your markup (and Modernizr does the exact same by default).
If you insert any of these new elements later on (via AJAX or templating), the html5shiv will handle this for you (as of v3). jQuery 1.7 has this functionality baked in.
Lastly, if you need these elements to print correctly, use html5shiv-printshiv.js.
Please