...
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <!--figure與figcaption:帶有可選標題的元素組合--> <figure> <img src="img/QQ截圖20160103144626.png" alt="圖片"/> <img src="img/webp.jpg" alt="圖片" width="211" height="191"/> <figcaption>我的圖片組合</figcaption> </figure><br /> <!--detail與summary元素:用於標示該元素內部的子元素可以展開收縮顯示--> <details id="details" ontoggle="detailfn(this)" style=" cursor: pointer;" > <summary>精武風雲</summary> <p id="p" style="visibility: hidden;">陳真(甄子丹 飾)當年為報殺師之仇,獨闖虹口道場。。。</p> </details><br /> <!--mark:突出顯示或高亮顯示--> <mark>html5</mark>的高亮顯示<br /> <!--progress:進度條--> <section> <h2>progress元素的使用實例</h2> <p>完成的百分比<progress id="p" max="100"><span>0</span>%</progress> </p> </section><br /> <!--meter:規定範圍內的數量值---> <p>磁碟使用量:<meter value="40" min="0" max="160">40/160</meter>GB</p><br /> <!--dialog:對話框,預設隱藏,js控制--> <input type="button" value="打開對話框" onclick="document.getElementById('dg').show();"/> <input type="button" value="打開對話框showModal" onclick="document.getElementById('dg').showModal();" /> <dialog id="dg" style="width:15%;text-align: center;"> <form> <label for="txtName" value="用戶名:"></label> <input type="text" id="txtName"/><br /> <label for="pwd" value="密碼:"></label> <input type="text" id="pwd"/><br /> <input type="button" value="登錄" /> <input type="button" value="關閉" onclick="document.getElementById('dg').close();" /> </form> </dialog><br /><hr /> <!--改良的a元素:download屬性直接下載--> <a href="img/QQ截圖20160103144626.png" download="文件名"><img src="img/QQ截圖20160103144626.png" /> </a><br /> <!--ol:改良的 start與reversed屬性:自定義開始編號與反編號--> <h3>start與reversed實例</h3> <ol start="5" reversed=""> <li>內容1</li> <li>內容2</li> <li>內容3</li> <li>內容4</li> <li>內容5</li> </ol><br /> <!--dl:定義術語列表: dt表示術語,dd表示定義--> 術語解釋: <dl> <dt>rss</dt> <dt>rss也叫聚合rss是線上共用內容的一種簡易方式(也叫聚合內容)</dt> </dl><br /> <!--cite:表示作品--> <p>最近上映的<cite>美國隊長3</cite> 這個電影不錯!</p><br /> <!--iframe:sandbox屬性添加限制增強安全性--> <!--script:async與defer屬性加快載入速度--> </body> </html>