What does this tag do?
<!doctype html>
What I can see is that with this tag on top my html behaves in another way than without. How do I know if I need this tag?
|
|
|
It's an integral part of HTML as defined in the specification:
Edit to add:
You wont know if you'll need it until something goes wrong and you don't have it. |
|||||||||||
|
Quote from here: http://www.w3schools.com/tags/tag_doctype.asp :) |
|||||||||||||||||||
|
The DOCTYPE Declaration (DTD or Document Type Declaration) does a couple of things:
If the web page coding does not include a DOCTYPE Declaration (DTD or Document Type Declaration) or it is done incorrectly:
Which DOCTYPE should you use? If you are a beginner to HTML (HyperText Markup Language) then I would suggest you use the
This DOCTYPE declaration still allows elements and presentation attributes that should be in the stylesheet.
With this declaration all presentation attributes are moved to the stylesheet. A complete list of DOCTYPE Declarations (DTDs) is available at List of valid DTDs you can use in your document. |
|||
|
|