search
HomeWeb Front-endH5 TutorialA brief overview of the new and abolished tags in html5_html5 tutorial skills

New structure tag

section element
represents a content block in the page, such as a chapter, header, footer or other part of the page. It can be used in combination with h1, h2... and other elements to represent the document structure. Example:
in HTML5;
in HTML4.
article element
represents a piece of independent content on the page that is not related to the context. For example, an article.
aside element
represents auxiliary information related to the content of the article element in addition to the content of the article element.
header element
represents the title of a content block in the page or the entire page.
hgroup element
means to group the titles of the entire page or a content block in the page.
footer element
represents a footer for an entire page or a content block within a page. Typically, it will include the creator's name, the date it was created, and the creator's contact information.
nav element
represents the navigation link part of the page.
figure element
represents an independent piece of flow content, generally representing an independent unit in the main flow content of the document. Use the figcaption element to add a caption to a group of figure elements. For example:

Copy the code
The code is as follows:


PRC

The People's Republic of China was born in 1949



Often written in HTML4

prc


The People's Republic of China was born in 1949




Added other elements
video element
define video. Like movie clips or other video streams. Example:
Written in HTML4:



audio element
defines audio. Such as music or other audio streams. Example:
Writing in HTML4:

Copy code
The code is as follows:





embed element
is used to embed content (including various media). The format can be Midi, Wav, AIFF, AU, MP3, flash, etc. Example:
Code example in HTML4
mark element
is mainly used to visually present to the user the text that needs to be highlighted or highlighted. Search keywords are highlighted in typical application search results.
HTML5;HTML4 .
progress element
represents a running process. You can use the progress element to display the process of time-consuming functions in JavaScript. Waiting..., please wait. .
time element
represents date or time, or both at the same time.
ruby element
defines ruby ​​comments (Chinese phonetic or character).
Use with the and tags. The ruby ​​element consists of one or more characters (requiring an explanation/pronunciation) and an rt element that provides that information, as well as an optional rp element that defines what is displayed when the browser does not support the "ruby" element.

Copy code
The code is as follows:


汉< ;rt>(ㄏㄢˋ)


rt element
defines the interpretation or pronunciation of a character (Chinese phonetic phonetic or character).
rp element
is used in ruby ​​comments to define content displayed by browsers that do not support ruby ​​elements.
wbr element
represents soft line break. The difference from the br element: the br element indicates that a line break must be made here; wbr indicates that when the browser window or the parent element is wide (when there is no need for a line break), the line will not be broken, but when the width is not enough, the line will be automatically wrapped here.
canvas element
defines graphics, such as charts and other images. The element is just a graphics container (canvas), and you must use scripts to draw graphics.

Copy code
The code is as follows:



command element— —It seems to have no effect. Is there any problem with support?
represents a command button, such as a radio button, check box or button.

The command element is only visible if it is inside the menu element. Otherwise this element will not be displayed, but it can be used to specify keyboard shortcuts. .

Copy code
The code is as follows:



Click Me!


details tag Currently, only Chrome supports the details tag
, which is used to describe details of a document or a certain part of a document.
Can be used with the summary tag, which can define a title for details. The title is visible, and when the user clicks on the title, the details are displayed. summary should be the first child element of details.

datalist tag
defines a list of options. Use this element in conjunction with an input element to define the possible values ​​of the input. The datalist and its options are not displayed, it is just a list of valid input values. Use the list attribute of the input element to bind the datalist.

Copy code
The code is as follows:





datagrid tag How to use?
Define a list of optional data. The datagrid is displayed as a tree list.
If you set the multiple attribute to true, you can select more than one item in the list.

keygen tag How to use? The
tag specifies the key pair generator field to be used in the form.

When the form is submitted, the private key is stored locally and the public key is sent to the server.

Copy code
The code is as follows:


Username:
Encryption:



output tag
defines different types of output, such as script output.

Copy code
The code is as follows:





source tag The
tag defines media resources for media elements (such as
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
How to Add Audio to My HTML5 Website?How to Add Audio to My HTML5 Website?Mar 10, 2025 pm 03:01 PM

This article explains how to embed audio in HTML5 using the <audio> element, including best practices for format selection (MP3, Ogg Vorbis), file optimization, and JavaScript control for playback. It emphasizes using multiple audio f

How to Use HTML5 Forms for User Input?How to Use HTML5 Forms for User Input?Mar 10, 2025 pm 02:59 PM

This article explains how to create and validate HTML5 forms. It details the <form> element, input types (text, email, number, etc.), and attributes (required, pattern, min, max). The advantages of HTML5 forms over older methods, incl

How do I use the HTML5 Page Visibility API to detect when a page is visible?How do I use the HTML5 Page Visibility API to detect when a page is visible?Mar 13, 2025 pm 07:51 PM

The article discusses using the HTML5 Page Visibility API to detect page visibility, improve user experience, and optimize resource usage. Key aspects include pausing media, reducing CPU load, and managing analytics based on visibility changes.

How do I use viewport meta tags to control page scaling on mobile devices?How do I use viewport meta tags to control page scaling on mobile devices?Mar 13, 2025 pm 08:00 PM

The article discusses using viewport meta tags to control page scaling on mobile devices, focusing on settings like width and initial-scale for optimal responsiveness and performance.Character count: 159

How do I handle user location privacy and permissions with the Geolocation API?How do I handle user location privacy and permissions with the Geolocation API?Mar 18, 2025 pm 02:16 PM

The article discusses managing user location privacy and permissions using the Geolocation API, emphasizing best practices for requesting permissions, ensuring data security, and complying with privacy laws.

How to Create Interactive Games with HTML5 and JavaScript?How to Create Interactive Games with HTML5 and JavaScript?Mar 10, 2025 pm 06:34 PM

This article details creating interactive HTML5 games using JavaScript. It covers game design, HTML structure, CSS styling, JavaScript logic (including event handling and animation), and audio integration. Essential JavaScript libraries (Phaser, Pi

How do I use the HTML5 Drag and Drop API for interactive user interfaces?How do I use the HTML5 Drag and Drop API for interactive user interfaces?Mar 18, 2025 pm 02:17 PM

The article explains how to use the HTML5 Drag and Drop API to create interactive user interfaces, detailing steps to make elements draggable, handle key events, and enhance user experience with custom feedback. It also discusses common pitfalls to a

How do I use the HTML5 WebSockets API for bidirectional communication between client and server?How do I use the HTML5 WebSockets API for bidirectional communication between client and server?Mar 12, 2025 pm 03:20 PM

This article explains the HTML5 WebSockets API for real-time, bidirectional client-server communication. It details client-side (JavaScript) and server-side (Python/Flask) implementations, addressing challenges like scalability, state management, an

See all articles

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

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

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version