1.

What are the different types of are available in HTML5?

Answer»

It is used to create a reference to a Document TYPE Definition. In HTML 5, Doctype declaration is only needed to enable a standard MODE for documents which are WRITTEN with the HTML syntax. Hence, the Doctype for HTML 5 is SHORT and case-insensitive.

  • <!DOCTYPE html>
  • <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  • <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  • <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">


Discussion

No Comment Found