1. 程式人生 > >html速查

html速查

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <h1>標題:title</h1>
        <p>段落:paragraph</p>
        <hr><!--水平線:horizontal -->
        <br><!--換行-->
        <b>加粗文字:bold</b><br>
        <i>斜體文字:italics</i><br>
        <sub>下標:subscript</sub> <br>
        <sup> 上標:superscript</sup><br>
        <ins>插入:insert</ins><br>
        <del>刪除:delete</del><br>
        <area shape="
rect" coords="0,0,82,126" alt="Sun" href="sun.htm"><!--可點選區域。shap規定區域的形狀--> <small>小號字型:small</small><br> <a href="http://www.wo-com.club;">連結:link</a><br> <img src="/images/logo.png" width="258" height="39" alt="沒圖片時顯示文字"/><br><!--圖片:image--> <form action="
demo_form.php" method="post/get"> <input type="button" value="按鈕"><!--按鈕--> <input type="text" name="email"><!--文字框--> <input type="password"><!--密碼框--> <input type="checkbox" checked="checked" name="b"> <!--複選 預選--> <input type="
checkbox" name="b"> <!--複選--> <input type="radio" checked="checked" name="a"> <!--單選--> <input type="radio" name="a"> <!--單選--> <input type="submit" value="傳送"> <!--傳送按鈕--> <input type="reset" value="重置"> <!--重置--> <input type="hidden"> <!--隱藏域--> <p hidden="hidden">這是一段隱藏的段落。</p> 加密: <keygen name="security"> <p>http://www.runoob.com/html/html5-webstorage.html 記錄點選次數</p> <select><!--文字域--> <option>蘋果</option> <option selected="selected">香蕉</option> <option selected>櫻桃</option><!--預選--> </select> <br> <textarea name="comment" rows="3" cols="20"></textarea><!--文字域--> </form> <p>HTML 區塊元素 塊級元素在瀏覽器顯示時,通常會以新行來開始(和結束)。例項:<!-- <h1>, <p>, <ul>, <table>, <div>容器--></p> <p>HTML 內聯元素 在顯示時通常不會以新行開始例項: <!--<b>, <td>, <a>, <img>,<span>容器--></p> <p style="background-color:#FFaa00">通過十六進位制設定背景顏色</p> <p style="background-color:rgb(255,255,0)">通過 rbg 值設定背景顏色</p> <p style="background-color:yellow">通過顏色名設定背景顏色</p> <video width="200" height="180" controls><!--視訊--> <source src="movie.mp4" type="video/mp4"> </object> </video> <br> <audio controls><!--音訊--> <source src="horse.mp3" type="audio/mpeg"> <source src="horse.ogg" type="audio/ogg"> 您的瀏覽器不支援該音訊格式。 </audio> <br> <canvas id="myCanvas" width="200" height="100" style="border:1px solid #f29;"> 畫布 </canvas><br> <svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="190"> <polygon points="100,10 40,180 190,60 10,60 160,180" style="fill:lime;stroke:purple;stroke-width:5;fill-rule:evenodd;"> </svg><!--向量圖形--> <br> <iframe src="demo_iframe.htm" width="200" height="50">框架 內部網頁</iframe> <table border="1"> <caption>表格標題</caption> <tr> <th>表頭:heading</th> <th>表頭</th> <td rowspan="2">跨列</td> </tr> <tr> <td>表格</td> <td>表格:table</td> </tr> <tr> <th bgcolor="blue" align="left" >Name</th><!--表格背景顏色 對齊--> <th colspan="2">跨行</th> </tr> </table> <!--無序列表--> <ul style="list-style-type:disc"><!--實心圓--> <ul style="list-style-type:circle"><!--空心圓--> <ul style="list-style-type:square"><!--方形圓--> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> <ol start="20"><!--有序列表任意值開始--> <ol type="I"><!--不同型別 i--> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <dl><!--自定義列表--> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl> </body> </html>