Tools, FAQ, Tutorials:
Relation between HTML and XHTML
What Is the relation between XHTML and HTML?
✍: FYIcenter.com
Technically speaking, the HTML standard introduces one abstract langauge and
three concret syntaxes to represent an HTML document in different formats:
1. HTML language - An abstract language that describes a Web document in constructed. It is used to generate an abstract HTML document.
2. HTML serialization - A concret serialization syntax that describes how a HTML document can be represented as a text file.
3. XHTML serialization - A concret serialization syntax that describes how a HTML document can be represented as an XML file.
4. DOM API - A concret API syntax that describes how a HTML document can be represented as in-memory object.
So XHTML and HTML is closely related. XHTML defines how to use an XML file to represent an HTML document.
Â
⇒⇒HTML Tutorials
2017-02-20, 863👍, 0💬
Popular Posts:
How to use the "rewrite-uri" Policy Statement for an Azure API service operation? The "rewrite-uri" ...
How to use the "find-and-replace" Policy Statement for an Azure API service operation? The "find-and...
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1....
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text ...
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...