html5 introduces new elements to clearly defines structure of a page. html5 is not fully ready as the specification is still work-in-progress and not fully supported by most browsers. however many developers have already developed websites with html5 /… more »
Category: html5
html5 and old browsers
html5 introduces new tags that's not recognized by older browsers.
to fix it, add the following javascripts:
<script>
document.createElement("article");
document.createElement("footer");
document.createElement("header");
document.create… more »