HTML query
why it is required...?Is it really necessary to write this?
<!DOCTYPE html PUBLIC "-//abc//DTD XHTML 1.0 Transitional//EN" "https://abc.com/TR/xhtml1/DTD/xhtml1-transitional.dtd">
😕😕
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
@mahesh-E2tZ3t • Dec 28, 2009
@manish-r2Hoep • Dec 28, 2009
Thanks Mahesh...mahesh_dahale!DOCTYPE is a top level tag that identifies which version of HTML or XHTML the document is using (called DTD).
HTML and XHTML come in a variety of versions
DTD stands for "Document Type Definition" and is a tool used by web browsers to determine what set of "rules" to use when reading the document. These "rules" are actually machine language that layout the legal structure,
elements and attributes of a type of HTML or XHTML.
@mahesh-E2tZ3t • Dec 28, 2009
@manish-r2Hoep • Dec 28, 2009