HTML5 represents the future; W3C (World Wide Web Consortium, World Wide Web Consortium) has abandoned XHTML, making HTML5 an official standard and recognized.
HTML5 is the next generation of HTML.
HTML5 will become the new standard for HTML, XHTML and HTML DOM, with the goal of replacing the existing HTML4.01 and XHTML1.0 standards. It hopes to reduce the dependence of Rich Internet Applications (RIA) on Flash, Silverlight, JavaFX, etc., and provide more APIs that can effectively enhance network applications.
The last version of HTML was created in 1999. The world of the Web has changed dramatically since then.
HTML5 is still a work in progress. However, most modern browsers already have some HTML5 support.
HTML5 is the result of a collaboration between the W3C and the WHATWG.
WHATWG works on web forms and applications, while W3C focuses on XHTML 2.0. In 2006, the two parties decided to collaborate to create a new version of HTML.
Some rules established for HTML5:
New features should be based on HTML, CSS, DOM and JavaScript.
Reduce the need for external plug-ins (such as Flash)
Better error handling
More markup to replace scripts
HTML5 should be device independent
The development process should be transparent to the public
The simplest HTML5 document
- span>>
- title>A Tiny HTML Documenttitle>
- p>Let's rock the browser, HTML5 style.< ;/p>
A super simple HTML5 document containing only one line of text. It looks like this in the browser:
The more common structure uses
- span>>
- html>
- head>
- title>A Tiny HTML Documenttitle>
- head>
- body>
- p>Let's rock the browser, HTML5 style.< ;/p>
- body>
- html>
,
and HTML5 does not require these elements, but this writing style is better.HTML5 Document Type
- /span>>
The first line must be a specific document type declaration, which is used to tell which standard the subsequent document markup follows. HTML5's document type declaration is extremely simple.
Character encoding
Most websites now use UTF-8 encoding, which is concise, fast to convert, and supports any non-English characters you want.
It is very simple to add character encoding information in HTML5. Add the element in
, as follows:- head>
- meta charset="utf- 8">
- title>A Tiny HTML Documenttitle>
- head>
The Dreamweaver design tool automatically adds this metainformation when creating a new web page and also saves the file in UTF encoding. If you are using the simplest text editor, remember to select the correct encoding (UTF-8) when saving.
Page Language
It is a good practice to indicate the natural language used in web pages. To specify a language for content, use the lang attribute on any element.
To add language description to the entire page, you need to specify the lang attribute for the element, as shown in the following code:
- html lang="zh-CN">
This information detail is also useful for screen readers if the page contains text in multiple languages.
Add style sheet
As long as it is a professionally designed website, it will definitely use style sheets. When specifying the CSS style sheet to be used, you need to add the element in
, as follows:- head>
- meta charset="utf- 8">
- title>A Tiny HTML Documenttitle>
- link rel="stylesheet" href="TinyHTML5.css">
- head>
Add JavaScript
Adding JavaScript in HTML5 is similar to adding it to a traditional page, for example:
- head>
- meta charset="utf- 8">
- title>A Tiny HTML Documenttitle>
- link rel="stylesheet" href="TinyHTML5.css">
- script src="TinyHTML5. js">script>
- head>
There is no need to add the language="JavaScript" attribute. The browser assumes you want to use JavaScript.
Special Note:
If you want to spend a lot of time testing pages containing JavaScript in IE, you should also add a special comment called Web mark (saved from url=). This line of comment should be placed after the specified character encoding element, as follows :
- head>
- meta charset="utf- 8">
- title>A Tiny HTML Documenttitle>
This comment tells IE to treat the page as downloaded from the remote website. Otherwise, IE will switch to a special lock mode and pop up a security warning after you click "Allow blocked content" The JavaScript code will not be executed until after the button is pressed.
(0014) refers to the length of the about:internet string.
Final result
A complete and beautiful HTML5 code finally looks like this:
- /span>>
- html lang="zh- CN">
- head>
- meta charset="utf- 8">
- title>A Tiny HTML Documenttitle>
- link rel="stylesheet" href="TinyHTML5.css">
- script src="TinyHTML5. js">script>
- head>
- body>
- p>Let's rock the browser, HTML5 style.< ;/p>
- body>
- html>

html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

html5是指超文本标记语言(HTML)的第五次重大修改,即第5代HTML。HTML5是Web中核心语言HTML的规范,用户使用任何手段进行网页浏览时看到的内容原本都是HTML格式的,在浏览器中通过一些技术处理将其转换成为了可识别的信息。HTML5由不同的技术构成,其在互联网中得到了非常广泛的应用,提供更多增强网络应用的标准机。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
