Home > Common Problem > body text

What are the common new features of html5

百草
Release: 2023-06-14 13:21:25
Original
5055 people have browsed it

html5 Common new features: 1. Canvas drawing; 2. Form elements; 3. Semantic tags; 4. Media elements; 5. Geolocation; 6. Drag and drop API; 7. WebWorker; 8. WebStorage; 9. WebSocket; 10. SVG drawing. HTML5 is the latest HTML standard, specifically designed to carry rich web content without the need for additional plug-ins. It provides new elements and new APIs that simplify the construction of web applications.

What are the common new features of html5

The operating system for this tutorial: Windows 10 system, HTML5 version, DELL G3 computer.

What is HTML5:

1. HTML5 is the latest HTML standard.

2. HTML5 is specially designed to host rich web content without the need for additional plug-ins.

3. HTML5 has new semantics, graphics and multimedia elements.

4. The new elements and new APIs provided by HTML5 simplify the construction of web applications.

5. HTML5 is cross-platform and is designed to run on different types of hardware (PCs, tablets, mobile phones, TVs, etc.).

Common new features of HTML5:

1. Canvas element

##Canvas Elements are used to draw graphics on web pages, with multiple ways to draw paths, rectangles, circles, characters, and add images. Canvas draws 2D graphics through js and renders them pixel by pixel. If the picture is modified after it is completed, the entire scene will be redrawn.

2. Form elements

(1) New form element

: The element specifies the option list of the input field, use The list element of the element is bound to the id of the element;

: Provides a reliable method to verify the user. The tag specifies the key pair generator used for the form. Field;

: used for different types of output, such as calculation or script output.

(2) New form attributes

placehoder attribute: A short prompt will be displayed on the input field before the user enters the value, which is the default box prompt;

required Attribute: It is a boolean attribute that requires the input field to be filled in not to be empty;

pattern attribute: describes a regular expression used to verify the value of the element;

max/ min attribute: maximum and minimum values;

step attribute: specifies the legal number interval for the input field;

height/width attribute: used for the image height and sum of the tag of the image type Width;

autofocus attribute: is a boolean attribute, which automatically obtains focus when the page is loaded;

multiple attribute: is a boolean attribute, which specifies the selection of multiple values ​​​​in the element.

3. Semantic tags

Semantic tags not only make the tags have their own meaning, but also have the advantages of semantic tags: (1) Make the code structure of the interface clear, Convenient for code reading and collaborative team development; (2) Convenient for other devices to parse (such as screen readers, blind readers, mobile devices) to render web pages in a semantic manner; (3) Conducive to search engine optimization (SEO).

4. Media elements

Elements for playing audio files
Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!