Home >> FAQs/Tutorials >> XHTML Tutorials and Tips >> Index

XHTML Tutorial - XHTML 1.0 Document Types

By: FYIcenter.com

(Continued from previous topic...)

How Many Document Types Defined in XHTML 1.0?

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">

(Continued on next topic...)

  1. What is the Top Level Structure of an XHTML Document?
  2. How Many Document Types Defined in XHTML 1.0?
  3. What Is the "html" Tag/Element?
  4. What is the Second Level Structure of an XHTML Document?
  5. What Is the "head" Tag/Element?
  6. What Is the "body" Tag/Element?
  7. How To Write a "head" Element Properly?
  8. What Is the "title" Tag/Element?
  9. What is a Smallest Valid XHTML Dodument?
  10. What Is Wrong with This "head" Element?
  11. What Happens If the "title" Element is Missing?
  12. What Happens If a "meta" Element Is Not Closed?
  13. What Is a "meta" Tag/Element?
  14. What Is the Description "meta" Tag/Element?
  15. What Is the Keywords "meta" Tag/Element?
  16. What Is the Robots "meta" Tag/Element?
  17. What Is a http-equiv "meta" Tag/Element?
  18. What Is the Author "meta" Tag/Element?
  19. What Is the "base" Tag/Element?
  20. What Is a "script" Tag/Element?
  21. What Is a "link" Tag/Element?
  22. What Is a "style" Tag/Element?


Selected Developer Jobs:

More...