Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is DOCTYPE
What is a DOCTYPE? Which one do I use?
✍: FYIcenter
According to HTML standards, each HTML document begins with a DOCTYPE declaration that specifies which version of HTML the document uses. Originally, the DOCTYPE declaration was used only by SGML-based tools like HTML validators, which needed to determine which version of HTML a document used (or claimed to use).
Today, many browsers use the document's DOCTYPE declaration to determine whether to use a stricter, more standards-oriented layout mode, or to use a "quirks" layout mode that attempts to emulate older, buggy browsers.
2007-03-03, 6073👍, 0💬
Popular Posts:
What is the quickest sorting method to use? The answer depends on what you mean by quickest. For mos...
What is effort variance? Effort Variance = (Actual effort – Estimated Effort) / Estimated Effort.
What will be printed as the result of the operation below: main() { int a=0; if (a==0) printf("Cisco...
What are the two fundamental objects in ADO.NET ? Datareader and Dataset are the two fundamental obj...
What does a well-written Object Oriented program look like? A well-written object oriented program e...