Tools, FAQ, Tutorials:
Relation between HTML and XML
What Is the relation between HTML and XML?
✍: FYIcenter.com
XML (Extensible Markup Language) is a generic markup language to organize
generic information into a structured document with embedded tags.
HTML a specific markup language to organize Web information into a structured document.
When an HTML document is serialized in XHTML syntax, it becomes an XML document.
When an HTML document is serialized in HTML syntax, it becomes a text document with embedded tags similar to an XML document.
So HTML is related to XML only if an HTML document is serialized in the XHTML document.
For more information on XML, please visit http://www.w3.org/XML/.
⇒ Relation between HTML and HTTP
2024-01-31, 1614🔥, 0💬
Popular Posts:
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...