每一章中的HTML5示例
实例
<!DOCTYPE html>
<html>
<body>
<video width="420" controls>
<source src="mov_bbb.mp4" type="video/mp4">
<source src="mov_bbb.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</body>
</html>
什么是HTML5?
HTML5是最新的HTML标准。
HTML5是专门为承载丰富的 Web内容而设计的,并且无需额外插件。
HTML5拥有新的语义、图形以及多媒体元素。
HTML5提供的新元素和新的API简化了web应用程序的搭建。
HTML5是跨平台的,被设计为在不同类型的硬件(PC、平板、手机、电视机等等)之上运行。
HTML5中的新内容?
HTML5的新的文档类型(DOCTYPE)声明非常简单:
<!DOCTYPE html>
The new character encoding (charset) declaration is also very simple:
<meta charset="UTF-8">
HTML5实例:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>
<body>
Content of the document......
</body>
</html>
注释:HTML5中默认的字符编码是UTF-8。
HTML5 - 新的属性语法
HTML5标准允许 4中不同的属性语法。
本例演示在<input>标签中使用的不同语法:
在HTML5的一些最有趣的特性:
- 新的语义元素,比如<header>、<footer>、<article>and<section>。
- 新的表单控件,比如数字、日期、时间、日历和滑块。
- 强大的图像支持(借由<canvas>和<svg>)
- 强大额多媒体支持(借由<video>和<audio>)
- 强大的新API,比如用本地存储取代cookie
HTML5 - 被删元素
以下HTML4.01元素已从HTML5中删除:
- <acronym>
- <applet>
- <basefont>
- <big>
- <center>
- <dir>
- <font>
- <frame>
- <frameset>
- <noframes>
- <strike>
- <tt>
网友评论