Home  >  Article  >  Backend Development  >  What is XML? What is the difference between XML and HTML?

What is XML? What is the difference between XML and HTML?

巴扎黑
巴扎黑Original
2017-03-19 15:06:071291browse

[Introduction] XML is designed to describe data, and its focus is the content of the data. HTML was designed to display data, with the focus being on the appearance of the data. Basic knowledge you should master: Before you continue learning, you need to have a basic understanding of the following knowledge: HTML XHTMLjavaScript or VBScriptWhat is

xml is designed to describe data, and its focus is the content of the data.

HTML was designed to display data, with the focus being on the appearance of the data.

Basic knowledge you should master:
Before you continue learning, you need to have a basic understanding of the following knowledge:


HTML / XHTML
javaScript or VBScript
What is XML?
XML refers to Extensible Markup Language (EXtensible Markup Language)
XML is a markup language, very similar to HTML
XML is designed to describe data
XML tags are not preset definition. You need to define the labels yourself.
XML uses Document Type Declaration (DTD) or XML Schema to describe data.
XML with DTD or XML Schema is designed to be self-descriptive.
XML is a W3C standard
XML is a W3C standard
Extensible Markup Language was established as a W3C standard on February 10, 1998. www.

Main differences between XML and HTML
XML is designed to carry data.


XML is not intended to replace HTML.

Webpage Teaching Network

XML and HTML are designed for different purposes:

XML is designed to describe data, and its focus is the content of the data.

HTML was designed to display data, with the focus being on the appearance of the data.

HTML is designed to display information, while XML is designed to describe information.

XML without any behavior
XML is no behavior.

Maybe this is a little hard to understand, but XML won't do anything. XML is designed to structure, store and transmit information.


The following is a note written by Jani to Tove, stored as XML:

<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don&#39;t forget me this weekend!</body>
</note>

This tag has a title and message. It also contains information about the sender and receiver. However, this XML document still doesn't do anything. It's just pure information wrapped in XML tags. We need to write software or programs to transmit, receive and display this document.

XML is free and extensible
XML tags are not predefined. You have to "invent" your own labels.

The tags used to mark HTML documents and their structure are predefined. Authors of HTML documents can only use those tags defined in the HTML standard (such as e388a4556c0f65e1904146cc1a846bee, 4a249f0d628e2318394fd9b75b4636b1.).


XML allows creators to define their own tags and their own document structure.


The tags in the above example are not defined in any XML standard. These tags were invented by the authors of XML documents. Web Teaching Network

XML is a supplement to HTML
XML is not a substitute for HTML.

It is very important to understand that XML is not a replacement for HTML. In the future of Web development, the most likely scenario is that XML will be used to describe data, and HTML will be used to format and display this data. Web Teaching Network

Our best description of XML is: XML is a cross-platform tool for transmitting information that is independent of software and hardware.

The role of XML in future Web development
XML will be everywhere.

When we see the rapid development progress of the XML standard and the rapid pace at which a large number of software developers adopt this standard, we can't help but sigh. This is really amazing.

We firmly believe that XML will play no less important role in the future of the Web than HTML, which has always been the cornerstone of the Web, and that XML will become the most commonly used method for all data processing and data transmission. tool.                    

The above is the detailed content of What is XML? What is the difference between XML and HTML?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn