1, XML
What is XML?
- XML stands for EXtensible Markup Language
- XML is a markup language, very similar to HTML
- XML is designed to transmit data, not display data
- XML tags are not predefined. You need to define the labels yourself.
- XML is designed to be self-describing.
- XML is a recommended standard by W3C
Main differences between XML and HTML
XML is not a replacement for HTML.
XML and HTML are designed for different purposes:
XML is designed to transmit and store data, with the focus being the content of the data.
HTML is 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 transmit information.
XML without any behavior
XML does nothing.
Maybe this is a little hard to understand, but XML doesn't do anything. XML is designed to structure, store and transmit information.
The following is a note from John to George, stored as XML:
<note> <to>George</to> <from>John</from> <heading>Reminder</heading> Don't forget the meeting! </note>
The note above is self-descriptive. It has a title and message, and contains information about both the sender and the recipient.
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 just plain text
XML is nothing special. It's just plain text. Any software capable of processing plain text can process XML.
However, applications that can read XML can process XML tags in a targeted manner. The functional meaning of labels depends on the characteristics of the application.
With XML you can invent your own tags
The tags in the above example are not defined in any XML standard (such as
This is because XML does not have predefined tags.
The tags used in HTML (and therefore the structure of HTML) are predefined. HTML documents only use tags defined in the HTML standard (such as
,
, etc.).
XML allows creators to define their own tags and their own document structure.
XML is not a replacement for HTML
XML is complementary to HTML.
It’s important to understand that XML will not replace HTML. In most web applications, XML is used to transmit data, while HTML is used to format and display the data.
The best description of XML is:
XML is an information transmission tool that is independent of software and hardware.
XML is a recommended standard by W3C
Extensible Markup Language (XML) became a W3C recommendation on February 10, 1998.
For more information on W3C XML activities, visit our W3C Tutorials.
XML is everywhere
When we see the rapid development progress of the XML standard and the rapid speed at which a large number of software developers adopt this standard, we can't help but sigh. This is really amazing.
Currently, XML plays a no less important role in the Web than HTML, which has always been the cornerstone of the Web.
XML is everywhere. XML is the most commonly used tool for data transfer between various applications and is becoming increasingly popular in the field of information storage and description.
2, HTML
What is HTML?
HTML is a language used to describe web pages.
- HTML refers to Hypertext Markup Language (Hyper Text Markup Language)
- HTML is not a programming language, but a markup language
- A markup language is a set of markup tags
- HTML uses markup tags to describe web pages
HTML tag
HTML tags are often called HTML tags.
- HTML tags are keywords surrounded by angle brackets, such as
- HTML tags usually appear in pairs, such as and
- The first tag in a tag pair is the start tag and the second tag is the end tag
- Opening and closing tags are also known as open tags and closing tags
HTML 文档 = 网页
- HTML 文档描述网页
- HTML 文档包含 HTML 标签和纯文本
- HTML 文档也被称为网页
Web 浏览器的作用是读取 HTML 文档,并以网页的形式显示出它们。浏览器不会显示 HTML 标签,而是使用标签来解释页面的内容:
<h1 id="My-First-Heading">My First Heading</h1> <p>My first paragraph.</p>
例子解释
- 与 之间的文本描述网页
- 与 之间的文本是可见的页面内容
-
与
之间的文本被显示为标题 -
与
之间的文本被显示为段落
3、XHTML
什么是 XHTML?
- XHTML 指的是可扩展超文本标记语言
- XHTML 与 HTML 4.01 几乎是相同的
- XHTML 是更严格更纯净的 HTML 版本
- XHTML 是以 XML 应用的方式定义的 HTML
- XHTML 是 2001 年 1 月发布的 W3C 推荐标准
- XHTML 得到所有主流浏览器的支持
为什么使用 XHTML?
因特网上的很多页面包含了“糟糕”的 HTML。
如果在浏览器中查看,下面的 HTML 代码运行起来非常正常(即使它并未遵守 HTML 规则):
<title>This is bad HTML</title> <h1>Bad HTML </h1><p>This is a paragraph </p>
XML 是一种必须正确标记且格式良好的标记语言。
如果希望学习 XML,请阅读我们的 XML 教程。
今日的科技界存在一些不同的浏览器技术。其中一些在计算机上运行,而另一些可能在移动电话或其他小型设备上运行。小型设备往往缺乏解释“糟糕”的标记语言的资源和能力。
所以 - 通过结合 XML 和 HTML 的长处,开发出了 XHTML。XHTML 是作为 XML 被重新设计的 HTML。
与 HTML 相比最重要的区别:
文档结构
- XHTML DOCTYPE 是强制性的
- 中的 XML namespace 属性是强制性的
- 、、
以及 也是强制性的
元素语法
- XHTML 元素必须正确嵌套
- XHTML 元素必须始终关闭
- XHTML 元素必须小写
- XHTML 文档必须有一个根元素
属性语法
- XHTML 属性必须使用小写
- XHTML 属性值必须用引号包围
- XHTML 属性最小化也是禁止的
...> 是强制性的
XHTML 文档必须进行 XHTML 文档类型声明(XHTML DOCTYPE declaration)。
您可以在 W3School 的标签参考手册中找到完整的 XHTML 文档类型。
、
、下面的例子展示了带有最少的必需标签的 XHTML 文档:
<title>Title of document</title> ......
如何从 HTML 转换到 XHTML
- 向每张页面的第一行添加 XHTML
- 向每张页面的 html 元素添加 xmlns 属性
- 把所有元素名改为小写
- 关闭所有空元素
- 把所有属性名改为小写
- 为所有属性值加引号
用 W3C 验证器检验 XHTML
在下面的文本框中输入您的网址:
<video width="320" height="240" controls="controls"> <source src="movie.ogg" type="video/ogg"> <source src="movie.mp4" type="video/mp4"> Your browser does not support the video tag. </source></source></video>

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
