Home Web Front-end HTML Tutorial An in-depth explanation of the differences between HTML and XHTML

An in-depth explanation of the differences between HTML and XHTML

Aug 15, 2016 pm 04:49 PM

HTML (HyperText Markup Language, Hypertext Markup Language) The earliest official specification of HTML is HTML 2.0 released by IETF (Internet Engineering Task Force) in 1995. W3C (World Wide Web Consortium, World Wide Web Consortium), following the IETF, upgraded HTML several times until HTML 4.01 was released in 1999.
 HTML and XHTML
 XHTML (eXtensible HyperText Markup Language) is the first revised version of HTML 4.01. It is "reorganized from three types of HTML4 files according to the XML1.0 standard". In other words, XHTML is a hybrid of HTML 4.01 and XML1.0.
Since XHTML1.0 is based on HTML4.01, it does not introduce any new tags or attributes (XHTML can be regarded as a subset of HTML). The expression is similar to the hypertext markup language HTML, but the syntax is more strict, almost All web browsers are compatible with XHTML while correctly parsing HTML.
 For example: all tags in XHTML must be lowercase, all tags must be closed, and every attribute must be enclosed in quotation marks.
should be written as
, not
(same as hr); after using

, there must be a

to end the paragraph.
 HTML and XML
 HTML is an application based on Standard Generalized Markup Language (SGML), while XHTML is based on Extensible Markup Language (XML). HTML and XHTML are actually two standards that developed in parallel. In essence, XHTML is a transitional technology that combines some of the powerful features of XML with most of the simple features of HTML. The purpose of establishing XHTML is to realize the transition from HTML to XML.
  XML is designed to transmit and carry data information, not to represent or display data. HTML language is used to represent data. RSS and ATOM have now become successful XML applications. RSS uses XML as a standard way to share content with each other. It stands for Really Simple Syndication (or RDF Site Summary, RDF site summary). It makes it easy for others to discover that you have updated your site. There seem to be fewer Atom data sources; for developers, RSS is relatively simple, and Atom is a little more complicated, especially if you are not familiar with XML.
 In 1997, when W3C released the XML1.0 standard, HTML version had already reached version 4. Until January 26, 2000, XHTML1.0 became a W3C recommended standard. However, in view of the current situation of HTML dominating the world at that time, W3C had no choice but to recommend "continuing to use HTML4.01 and actively research plans for HTML5 and XHTML." In 2002, W3C pointed out that the XHTML family would be a new stage of the Internet, and began to develop XHTML2, aiming to lead the Web to an extremely bright future based on XML.
 HTML5 is popular
Since XHTML originally only improved the original HTML system in terms of content structure, XHTML2.0 only paid more attention to page specifications and usability based on XHTML1.1, and lacked interactivity. In this era when Web Apps are popular, XHTML2 is somewhat out of date, so HTML5 was born.
 The W3C ignores the needs of web designers and works behind closed doors from a theoretical perspective. However, it carries the banner of standards, triggering opposition from browser manufacturers such as Opera, Apple, and Mozilla. In 2004, they formed an organization with the purpose of promoting the HTML5 standard for the Internet - the Web Hypertext Application Technology Working Group (WHATWG).
 Competition between HTML5 and XHTML2
 HTML5 aims to replace the HTML4.01 and XHTML1.0 standards formulated in 1999, aiming to improve web page performance and increase page interaction. HTML5 has absorbed some suggestions from XHTML2, including some features to improve document structure. For example, the use of new HTML tags header, footer, dialog, aside, figure, etc. will allow content creators to create documents more semantically. Previous development Readers always use div in these situations.
 After years of hard work, W3C and WHATWG finally reached a compromise in 2006. In October 2006, Tim Berners-Lee, the father of the Web, chairman of the World Wide Web Consortium (W3C), and member of the National Academy of Sciences, published a blog post stating that the path from HTML to XML is OK. It doesn't make sense (XHTML is dead). In 2009, W3C wisely gave up the plan to improve the XHTML2.0 standard and chose the results of WHATWG as the basis. In fact, XHTML was not modified in the years after it was updated in 2002, although many problems were discovered.
In 2011, Ian Hickson, a Google engineer and HTML5 standard editor, said that HTML5 will be the last HTML language with a version number. He said that the HTML language will become a living standard.
Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

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

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

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

How to efficiently add stroke effects to PNG images on web pages? How to efficiently add stroke effects to PNG images on web pages? Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

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

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; 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

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

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

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

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

See all articles