HTML(Hyper Text Markup Language):超文本標記語言,標籤不區分大小寫.css
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="keywords" content="關鍵字"> <meta name="description" content="文本介紹"> <style></style> <link rel="stylesheet" href="css.css"> <title>HTML</title> </head> <body> <p><p> <p style="color:green;"></p> </body> </html>
<h1></h1>標題1...標題6<h6></h6> <header>頭部</header> <nav>導航欄</nav> <footer>底部</footer> <aside>側邊</aside> <br/>換行 <span>Span</span> <b>粗體</b> <em>強調</em> <small>小號文本</small> <adress>地址</adress> <big>大號字</big> <i>斜體字</i> <strong>加劇語氣</strong> <sub>下標</sub> <sup>上標</sup> <ins>插入字</ins> <del>刪除字</del> <aside>側欄/aside>
<ul type="square"> <li>無序列表</li> </ul> <ol type="a"> <li>有序列表</li> </ol> <dl> <dt>自定義列表描述</dt> <dd>自定義列表項的描述</dd> </dl>
表單html
<form name="form_name" method="get" action=""> <fieldset> <label for="male">Look Gird</label> <input type="radio" name="單選按鈕" value="" placeholder=""> <input type="text" name="文本輸入" value="" placeholder=""> <input type="checkbox" name="多選按鈕" value="" placeholder=""> <input type="submit" name="提交" value="" placeholder=""> <input type="reset"> <input type="email" multiple> <input type="password"> <input type="tel" name="tel"> <input type="url"> <textarea cols="每行中的字符數" rows="顯示的函數"> <select> <option></option> </select> </fieldset> </form>
<table border="1"> <caption>表格標題</caption> <tr> <td>第一行</td> <th rowspan="2">第二行</th> </tr> <tr> <td>第一行</td> <td colspan="2">第二行</td </tr> </table>
<!--註釋文本--> <img alt="圖片" src="x" width="100" height="120"> <audio controls> <source src="" type="audio/mp3"> </audio> <iframe src="x" width=""height="" <video src="x" controls="controls" autoplay loop preload width="100"height="110"> <a href="www.baidu.com"></a>