<!DOCTYPE html>
<header>、<footer>、<section>、<article>、<nav>、<hgroup>、<aside>、<figure>
<big>、<u>、<font>、<basefont>、<center>、<s>、<tt>
<audio>、<video>
两个标签来实现对多媒体中的音频、视频使用的支持。<!-- 此类型要求输入格式正确的email地址 --><input type=email ><!-- 要求输入格式正确的URL地址 --><input type=url ><!-- 要求输入格式数字,默认会有上下两个按钮 --><input type=number ><!-- 时间系列,但目前只有 Opera和Chrome支持 --><input type=date ><input type=time ><input type=datetime ><input type=datetime-local ><input type=month ><input type=week ><!-- 默认占位文字 --><input type=text placeholder="your message" ><!-- 默认聚焦属性 --><input type=text autofacus="true" >
<!-- meta标签增加charset属性 --><meta charset="utf-8"><!-- script标签增加async属性 --><script async></script>
<!-- 只写属性名默认为true --><input type="checkbox" checked/><!-- 属性名="属性名"也为true --><input type="checkbox" checked="checked"/>
总结:对于HTML5与HTML4的区别,这些基本的概念是要有印象的,也许现在还比较粗略,但后面会一步步追问细节,慢慢深入,达到知其然也其所以然的效果。