Html常用標簽一 <body style=”background-color:red;”> Body 標簽 Style 屬性 background-color:red; 屬性值 background-color css屬性 red css屬性值 html常用標簽二 列表標簽 Ul ol Table ...
Html常用標簽一
<body style=”background-color:red;”>
Body 標簽
Style 屬性
background-color:red; 屬性值
background-color css屬性
red css屬性值
html常用標簽二
列表標簽
Ul ol
Table cellpadding 內邊距 cellspacing 表格與表格之間的元素
Width 寬度 height 高度
Bordercolor 邊框顏色 bgcolor 背景顏色
Align 居中 值center中 left左邊 right 右邊
Rowspan 跨行 colspan 跨咧
Caption 標題 Align屬性 上邊和下邊 top bottom
超鏈接
<a href=”#”>我是超鏈接<a>
頁面視窗彈出
Target=”-blank”
<a href="http://www.yuluting.com" target="_blank"><img src="img/1.jpg"</a> 在圖片中打開
圖片
<img src=”路徑”>
高度width 寬度heigt 邊框border
透明度
<img src="img/1.jpg" style=" opacity:0.5" />
Form表單
<form action="1.aspx" method="post"> 後臺提交 post
用戶名:<input type="text" name="username" />
密碼:<input type="password" name="pwd" />
<input type="submit" />提交
<input type="reset" />重置
</form>
性別:
男女只能選擇一個
<input type="radio" name="sex" /><label>男</label>
<input type="radio" name="sex" /><label>女</label>
點擊漢字男女也能選擇
<input type="radio" name="sex" id="male" /><label for="male">男</label>
<input type="radio" name="sex" id="female" /><label for="female">女</label>
多選框
<input type="checkbox" />蘋果
<input type="checkbox" />蘋果
<input type="checkbox" />蘋果
下拉列表
<select name="fruit" multiple="multiple">
<option value="apple">蘋果</option>
<option value="orange">橘子</option>
<option value="mango">芒果</option>
</select>