歡迎大家在這裡學習常用html標簽!下面是我們給大家整理出來的精彩內容。希望大家在這裡學習!
<a href="#">a 超級鏈接(anchor)</a>
<abbr title="abbreviation的簡寫">abbr 簡寫的(abbreviation)</abbr>
<acronym title="Jin Hua Tang is JHT">acronym 首字母縮略詞(acronym) </acronym>
<address>address 地址(address)
</address>
<b>b 粗體(bold)</b>
<bdo dir="ltr">bdo <bdo dir="rtl">局部控制文字方向</bdo></bdo>
<big>big 放大(big)</big>
<blockquote>blockquote 引用塊(blockquote)
</blockquote>
<br /> br 換行(break)
<center>center 居中(center)
</center>
<cite>cite 引用(cite)</cite>
<code>code 代碼(code)</code>
dl 字典列表(dictionary list)
<dl>
<dt>dt 字典標題(dictionary title)</dt>
<dd>dd 字典數據(dictionary data)
</dd>
<dt>dt 字典標題(dictionary title)</dt>
<dd>dd 字典數據(dictionary data)
</dd>
</dl>
<del>del 刪除(delete)</del>
<dfn>dfn 定義(definition)</dfn>
<div>div 區塊(division)
</div>
<em>em 強調(emphasize)</em>
<form action="#" method="post">
form 表單(form)
</form>
<h1>h1 標題1(head1)
</h1>
<h2>h2 標題2(head2)
</h2>
<h3>h3 標題3(head3)
</h3>
<h4>h4 標題4(head4)
</h4>
<h5>h5 標題5(head5)
</h5>
<h6>h6 標題6(head6)
</h6>
<hr /> hr 橫線(horizontal)
<i>i 斜體(italic)</i>
<img src="#" alt="圖片"
/>img 圖片(image)
<input type="text" name="name" value=""
/>input,type='text' 文本輸入框(text)
<input type="radio" name="name" value=""
/>input,type='radio' 單選框(radio)
<input type="checkbox" name="name" value=""
/>input,type='checkbox' 復選框(checkbox)
<input type="file" name="name" value=""
/>input,type='file' 文件選擇框(file)
<input type="hidden" name="name" value=""
/>input,type='hidden' 隱藏域(hidden)
<input type="image" name="name" value=""
/>input,type='image' 圖片按鈕(image)
<input type="password" name="name" value=""
/>input,type='password' 密碼輸入框(password)
<input type="reset" name="name" value="reset"
/>input,type='reset' 重置按鈕(reset)
<input type="submit" name="name" value="submit"
/>input,type='submit' 提交按鈕(submit)
<ins>ins 插入(insert)</ins>
<kbd>kbd 鍵盤文字(keyboard)</kbd>
<noscript>noscript 沒有腳步(noscript)
</noscript>
ol 有序列表(order list)
<ol>
<li>li 列表項(list item)</li>