Home > Article > Web Front-end > Is html5 the fifth revision?
html5 is the fifth revision. HTML5 is the fifth revision to the HTML standard. Its main goal is to semanticize the Internet so that it can be better read by humans and machines, and at the same time provide better support for the embedding of various media; the syntax of HTML5 is backward compatible.
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
HTML5
HTML5 is the fifth revision to the HTML standard. Its main goal is to semanticize the Internet so that it is better readable by humans and machines, and at the same time provide better support for embedding of various media. HTML5 syntax is backwards compatible. H5, which is now commonly referred to in China, includes CSS3 and JavaScript (strictly speaking, it is not appropriate to call it this way, but it is already wrong to call it this way).
HTML5 is the latest revised version of HTML. The standard was completed by the World Wide Web Consortium (W3C) in October 2014.
HTML5 is designed to support multimedia on mobile devices.
Some interesting new features in HTML5:
The canvas element for painting.
Video and audio elements for media playback
Better support for local offline storage.
New special content elements, such as article, footer, header, nav, section.
New form controls, such as calendar, date, time, email, url, search.
New elements
New attributes
Fully supports CSS3
Video and Audio
New elements and attributes
1. Semantic tags Semantic tags make the content of the page structured and well-known
Description | |||||||||||||||||||||||||||||||||||||
defines the document The header area | |||||||||||||||||||||||||||||||||||||
defines the tail area of the document | |||||||||||||||||||||||||||||||||||||
Define the navigation of the document | |||||||||||||||||||||||||||||||||||||
Define the sections in the document (section, section) | |||||||||||||||||||||||||||||||||||||
Define independent content areas of the page | |||||||||||||||||||||||||||||||||||||
Define the sidebar content of the page | ##beb511a96a5aab3e931614dde36c9a0474bab71bc346026b84f2313feafdfe04 | ||||||||||||||||||||||||||||||||||||
##631fb227578dfffda61e1fa4d04b7d25039f3e95db2a684c7b74365531eb6044 | |||||||||||||||||||||||||||||||||||||
a38fd2622755924ad24c0fc5f0b4d412e949bf554aab987df819ed6441bc3609 | |||||||||||||||||||||||||||||||||||||
2. Enhanced form HTML5 has multiple new form input types. These new features provide better input control and validation.
HTML5 also adds the following Form Element
HTML5 new form attribute
HTML5 Multimedia Using HTML5, you can simply play video and audio on web pages. ).
<audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 元素。 </audio>Add play, pause and volume controls. Between b97864c2e0ef2353a16c4d64c7734e92 and 81d2bc32cafa2076a27f10cdd878d0ab you need to insert the prompt text of the b97864c2e0ef2353a16c4d64c7734e92 element that the browser does not support. The b97864c2e0ef2353a16c4d64c7734e92 element allows the use of multiple e02da388656c3265154666b7c71a8ddc elements. The e02da388656c3265154666b7c71a8ddc element can link different audio files, and the browser will use the first supported audio file Currently, the b97864c2e0ef2353a16c4d64c7734e92 element supports three audio format files: MP3, Wav, and Ogg
<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> 您的浏览器不支持Video标签。 </video>control provides play, pause and volume controls to control the video. You can also use DOM operations to control the playback and pause of the video, such as the play() and pause() methods. At the same time, the video element also provides width and height attributes to control the size of the video. If the height and width are set, the required video space will be reserved when the page is loaded. If these properties are not set and the browser does not know the size of the video, the browser will not be able to reserve a specific space when loading, and the page will change based on the size of the original video. The content inserted between the and tags is provided for display by browsers that do not support the video element. The video element supports multiple source elements. Elements can link different video files. The browser will use the first recognized format (MP4, WebM, and Ogg)Related recommendations:《 html video tutorial》 |
The above is the detailed content of Is html5 the fifth revision?. For more information, please follow other related articles on the PHP Chinese website!