Tools, FAQ, Tutorials:
XHTML 1.0 Document Types
How Many Document Types Defined in XHTML 1.0?
✍: FYIcenter.com
There are only 3 document types are defined in XHTML 1.0:
1. Strict type: Only allow non-deprecated and non-frameset XHTML elements in this type. Strict type should be declared as below:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2. Transitional type: Allow all XHTML elements defined in "strict" type, plus other elements that are deprecated in HTML 4.0. Transitional type should be declared as below:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3. Frameset type: Allow all XHTML elements defined in "transitional" type, plus frame related elements. Transitional type should be declared as below:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
⇒ Smallest Valid XHTML 1.0 Document
2023-11-06, 1796🔥, 0💬
Popular Posts:
How to use the "return-response" Policy statement to build the response from scratch for an Azure AP...
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...
How to make application release build with Visual Studio 2017? If you want to make a final release b...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...