古詩詞大全網 - 個性簽名 - html常用標簽有哪些

html常用標簽有哪些

html常用標簽

最近,對html的重溫,對壹些常用的html標簽進行了整理,給大家分享壹下。

html結構:

<html> html開始標簽

<head>

<title>html文檔標題</title>

</head>

<body>

html文檔內容....

</body>

</html> html結束標簽

html常用標簽:

表格:

<table> 表格開始標簽

<tr> 行

<td></td> 列

</tr>

</table> 表格結束標簽

表格屬性:<table width="" height="" border="" bgcolor="" background="" cellpadding="' cellspacing="" >其中: width:為表格的寬度,height:表格的高度,border:表格的邊框,

bgcolor表格的背景顏色,background 表格背景顏色。cellpadding:表格字間距, cellspacing:表格邊框間距。

雙標簽:

<b></b> 字體加粗

<i></i> 斜體

<u></u> 字體下劃線

<s></s> 刪除線

<strike></strike> 刪除線

單標簽:

<br /> 換行

<hr /> 水平線

空格:

向右雙箭頭 :?

註冊商標符:?

版權符號:?

雙引號:"

鏈接

<a href="#" title="">鏈接文本/圖片</a>

註:# 換成所要鏈接的文件相對地址。title:為鏈接提示信息。

圖片鏈接:

<img src="" alt="" width="" hegiht="" >

src:圖片鏈接相對地址,alt:圖片信息, width:圖片寬度,height:圖片高度。

表單:

表單開始標簽:<form name="表單名稱" method="post/get" action="提交地址">

文本框:<input type="text" name="名稱" value="值" />

密碼框:<input type="password" name="名稱" value="值"/>

單選按鈕:<input type="radio" name="名稱" checked />

復選框:<input type="checkbox" name="名稱" checked />

列表:

<select>

<option value="值"></option>

</select>

文本區域:<textarea cols="文本的寬度" rows="文本行數"></textarea>

提交按鈕:<input type="submit" name="名稱" value="值" />

重置按鈕 <input type="reset" name="名稱" value="值" />

表單結束標簽:</form>