how to know which <!DOCTYPE> type to use

doctype, document, html, types

Solution

You can use which you want, but in HTML 5 is recommend to use this:

<!DOCTYPE html>

Problem

i've searched and could not find any good explanation on here and on the internet many people outline what document types there are but don't explain how to determine which one would work best for your code.... so my question is how do i know which type of document type to declare in my webpage.....i know the difference between XHTML and HTML, i'm not asking that, i'm asking what type of document type such as: ``` <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> ``` OR ``` <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> ``` an explanation or links would help.....i appreciate it!

Original source