語義標簽
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<!--日期時間-->
<input type="datetime-local" name="" id="" value="" /> </br>
<!--時間-->
<input type="time" name="" id="" value="" /> </br>
<!--chrome下輸入文字后,會多出一個關閉的X-->
<input type="search" name="" id="" value="" /> </br>
<!--滑動條-->
<input type="range" name="range1" min="0" max="100" step="5"/> </br>
<!--拾色器-->
<input type="color" name="" id="" value="" /> </br>
<!--選項列表-->
<input type="text" list="valList" />
<!--可篩選-->
<datalist id="valList">
? ? ? ?<option value="javascript" label="腳本">javascript</option>
? ? ? ?<option value="html" label="內容">html</option>
? ? ? ?<option value="css" ?label="樣式">css</option>
? ?</datalist>
<!--用于摘錄引用-->
<details open="open">
<summary>啊啊啊啊啊啊</summary>
<p>啊啊啊啊啊</p>
<p>啊啊啊啊</p>
<p>啊啊啊</p>
</details>
<!--黃色標記-->
<mark>標記</mark>
<!--hgroup(雙標簽):頁面上的一個標題組合,一個標題和一個子標題,或者標語的組合-->
<hgroup>
<h1>h1</h1>
<h2>h2</h2>
</hgroup>
<!--定義文章或頁面作者的詳細內容,為斜體顯示-->
<address>aaaaaaaaaaaaaaaaaa</address>
<!--low指定計數儀表指定范圍的最小值,必須大于min
? high指定計數儀表指定范圍的最大值,必須小于max
? optimum計數儀表有效范圍內的最佳值,如果大于high則越大越好,如果小于low則越小越好-->
<meter min="2" max="50" low="10" high="40" optimum="45" value="47"></meter>
<!--定義進度條-->
<!--//無min屬性-->
<progress max="100" value="50">
? ? ? ? <span>50</span>%
? ? ? ? </progress>
? ? ? ? <form action="demo_keygen.asp" method="get">
? ? ? ?Username: <input type="text" name="usr_name" />
<!--//?選擇高級或中級,點擊提交按鈕,自動生成-->
? ? ? ?Encryption: <keygen name="security" />
? ? ? ?<input type="submit" />
? ? ? ? ?</form>
</body>
</html>
