Home  >  Article  >  Web Front-end  >  Do web standards include html standards?

Do web standards include html standards?

青灯夜游
青灯夜游Original
2021-12-23 12:10:383734browse

Web standards include html standards. Web standards, also known as web standards, refer to web design that must comply with W3C and ECMA specifications. It consists of a series of standards; in web design that meets standards, CSS, HTML, and JavaScript are called the three basic languages ​​​​of web front-end design. .

Do web standards include html standards?

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

What are Web standards (web standards)

Web standards are also called web standards. They consist of a series of standards. Most of these standards It is formulated by W3C, and there are also some standards formulated by other standards organizations, such as ECMA's ECMAScript standard.

Web standards in a narrow sense refer to DIV CSS in web design, and Web standards in a broad sense mean that web design must comply with W3C and ECMA specifications.

In standard-compliant web design, CSS, HTML, and JavaScript are considered the three basic languages ​​for web front-end design. Among them:

  • HTML is responsible for building web pages. Basic structure;

  • CSS is responsible for designing the performance effect of the web page;

  • JavaScript is responsible for developing the interactive effect of the web page.

Web page structure

Web page standards mainly organize and classify page information in web pages. Structural standards Languages ​​mainly include XML, HTML, and XHTML.

1) XML

XML is the abbreviation of The Extensible Markup Language, which is translated into Chinese as "Extensible Markup Language". It is a language that can define other languages.

The original design goal of XML is to make up for the shortcomings of HTML and meet the needs of network information publishing with strong scalability. Now XML is mainly used as a data format for network data exchange and writing configuration files.

The XML recommendation standard is XML 1.0 released by W3C on October 6, 2000. The reference address is: https://www.w3.org/TR/2000/REC-XML-20001006.

2) HTML

HTML is the abbreviation of HyperText Markup Language, translated into Chinese as "Hypertext Markup Language", and XHTML 1.0 is based on HTML 4.0, using XML rules extend it.

The original purpose of publishing XHTML was to realize the transition from HTML to XML. In a general context, people are used to using HTML instead of HTML and XHTML.

The HTML recommended standard is XHTML 1.0 released by W3C on January 26, 2000. The reference address is: https://www.w3.org/TR/xhtml1/.

Web page behavior

Behavior standards mainly control the structure and display of web page information logically in web pages to achieve intelligent interaction on web pages. Behavioral standard languages ​​mainly include Document Object Model (such as W3C DOM) and EMAScript.

1) DOM

DOM is the abbreviation of Document Object Model, translated into Chinese as "Document Object Model", according to the W3C DOM specification (reference address: https:// www.w3.org/DOM/), DOM is a language that allows browsers to communicate with web content, allowing users to access page elements and components.

2) ECMAScript

ECMAScript is a standard scripting language developed by the EMA (European Computer Manufactures Association) organization.

Currently the most widely used is ECMAScript 262, which is JavaScript 5.0 version. The reference address is: http://www.ecma-international.org/publications/standards/Ecma-262.htm.

Related recommendations: "html video tutorial"

The above is the detailed content of Do web standards include html standards?. 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