html5 是最新的 html 标准。 (推荐学习: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">
实例
<!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?的详细内容。