Html5 Document Type
1 2 |
|
Tag is not an HTML tag but basically an instruction from our web document to the browser of what kind of document it should be expecting.
1 2 3 4 5 6 7 8 9 |
|
<!DOCTYPE html>
We are telling the browser, this is an html5 document.Unlike previous versions of HTML, HTML5 has just one type of document declaration <!DOCTYPE html>
, and it's not case sensitive.