HTML

HTML标签

<mate name="keywords" content="xxx">
<mate name="discription" content="xxx">
<mate chartset="utf-8">
<mate name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
<br> <!--换行-->
<hr> <!--水平线-->
<u></u> <!--下划线-->
<s></s> <!--删除线-->
<sup></sup> <!--上标-->
<sub></sub> <!--下标-->
<p></p> <!--p标签不能嵌套块级标签-->
<header></header>
<nav></nav>
<section></section>
<footer></footer>
<a data-taggle="tab" href="#">xxx</a> <!--自定义属性-->
<iframe src="" width="100%" height="100%" framborder="0"></iframe>

输入框下拉提示

<datelist id="cars">
  <option value="BWM">BWM</option>
  <option value="Audi">Audi</option>
</datelist>
<input type="text" list="cars" autocomplete="off">