<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>表单标签</title>
</head>
<body>
<!-- 表单标签 -->
<!-- form:标签 -->
<!-- input:输入 -->
<!-- type:类型 -->
<!-- text:文本 -->
<!-- password:密码 -->
<!-- radio:单选 -->
<!-- name:名字 -->
<!-- sex:性别 -->
<!-- hobby:爱好 -->
<form>
学生姓名:<input type="text" /><br />
登录密码:<input type="password" /> <br />
性别:<input type="radio" name="sex"/>女 <input type="radio" name="sex"/>男<br>
爱好:<input type="checkbox" name="hobby" />吃饭 <input type="checkbox" name="hobby"/>睡觉
<input type="checkbox name="hobby"/>打豆豆<br />
籍贯:
<select>
<option>青青草原</option>
<option>王者峡谷/<option>
<option>G港</option>
<option>N港</option>
</select>省
<select>
<option>青青草原</option>
<option>王者峡谷/<option>
<option>G港</option>
<option>N港</option>
</select>市
<br />
<!-- select:选择 -->
<!-- option:选项 -->
<!-- textarea:文本域 -->
<!-- placeholder:提示文本 -->
留言:
<textarea placeholde="请输入文本内容"></textarea>
<!-- 按钮标签:button(按钮) -->
<!-- value:值 -->
<!-- <reset:重置> -->
<br/>
<input type="button" value="砍一刀" />
<!-- submit:提交 -->
<input type="submit" value="注册"/>
<input type="reset" />
</form>
<!-- div标签:盒子标签 -->
<div>
</div>
<!-- table:表格
head:头部
body:身体
th: table head
tr: table row(行)
td: table data(数据)
border: 边框
cellspacing: 数据单元格之间的距离
cellpadding: 文字到边框的距离-->
<table border="1" cellspacing="0" cellpadding="10">
<thead>
<tr>
<th>offic</th>
<th>excel</th>
<th>word</th>
</tr>
</thead>
<tbody>
<tr>
<td>bs</td>
<td>bs</td>
<td>bc</td>
</tr>
</tbody>
</table>
</body>
</html>
HLLLL
最新推荐文章于 2024-11-05 11:58:24 发布