What is the correct way to use start tag when creating with HTML5
IE: HTML 4 Strict is like this
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
you just use
|
|||||
|
Learning Resource: |
|||
|
|
|
The standard has been simplified because the previous doctypes were too cryptic. The new doctype is simply
More info: http://dev.w3.org/html5/html-author/ |
|||
|
|
|
You only need this:
There are several points here. This is supported by all browsers, even old ones like IE6/IE7. All browsers actually nee "html" part from doctype declaration to jump into standards mode. |
|||
|
|
|
The start tag (The doctype declaration is something quite different, and not a tag at all.) |
|||
|
|
|
You use...
followed by your HTML tag etc.. You really needed to ask this? Seriously? You couldn't find that out anywhere else? |
||||
|
|