search
HomeWeb Front-endH5 TutorialSimple HTML5 preliminary introductory tutorial_html5 tutorial skills

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

XML/HTML CodeCopy content to clipboard
  1. span>>
  2. title>A Tiny HTML Documenttitle>
  3. 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

and to separate the information of the page from the actual content of the page, and uses to encapsulate the entire document , the current document looks like this:
XML/HTML CodeCopy content to clipboard
  1. span>>
  2. html>
  3. head>
  4. title>A Tiny HTML Documenttitle>
  5. head>
  6. body>
  7. p>Let's rock the browser, HTML5 style.< ;/p> 
  8. body>
  9. html>

,

and HTML5 does not require these elements, but this writing style is better.

HTML5 Document Type

XML/HTML CodeCopy content to clipboard
  1. /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:
XML/HTML CodeCopy content to clipboard
  1. head>
  2. meta charset="utf- 8"> 
  3. title>A Tiny HTML Documenttitle>
  4. 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:

XML/HTML CodeCopy content to clipboard
  1. 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:
XML/HTML CodeCopy content to clipboard
  1. head>
  2. meta charset="utf- 8"> 
  3. title>A Tiny HTML Documenttitle>
  4. link rel="stylesheet" href="TinyHTML5.css">
  5. head>


Add JavaScript

Adding JavaScript in HTML5 is similar to adding it to a traditional page, for example:

XML/HTML CodeCopy content to clipboard
  1. head>
  2. meta charset="utf- 8"> 
  3. title>A Tiny HTML Documenttitle>
  4. link rel="stylesheet" href="TinyHTML5.css">
  5. script src="TinyHTML5. js">script>
  6. 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 :

XML/HTML CodeCopy content to clipboard
  1. head>
  2. meta charset="utf- 8"> 
  3. 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:

XML/HTML CodeCopy content to clipboard
  1. /span>>
  2. html lang="zh- CN"> 
  3. head>
  4. meta charset="utf- 8"> 
  5. title>A Tiny HTML Documenttitle>
  6. link rel="stylesheet" href="TinyHTML5.css">
  7. script src="TinyHTML5. js">script>
  8. head>
  9. body>
  10. p>Let's rock the browser, HTML5 style.< ;/p> 
  11. body>
  12. html>
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
html5的div一行可以放两个吗html5的div一行可以放两个吗Apr 25, 2022 pm 05:32 PM

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

html5中列表和表格的区别是什么html5中列表和表格的区别是什么Apr 28, 2022 pm 01:58 PM

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

html5怎么让头和尾固定不动html5怎么让头和尾固定不动Apr 25, 2022 pm 02:30 PM

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

HTML5中画布标签是什么HTML5中画布标签是什么May 18, 2022 pm 04:55 PM

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

html5中不支持的标签有哪些html5中不支持的标签有哪些Mar 17, 2022 pm 05:43 PM

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

html5废弃了哪个列表标签html5废弃了哪个列表标签Jun 01, 2022 pm 06:32 PM

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

Html5怎么取消td边框Html5怎么取消td边框May 18, 2022 pm 06:57 PM

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是什么意思html5是什么意思Apr 26, 2021 pm 03:02 PM

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

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

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!