简单的列表序列
无序列表 盒子 ul unorder 列表项 li list
- 第一条数据
-
- 第二条数据
-
- 第三条数据
-
ul>li3 div>div3
超链接标签
<a></a> anchor 锚点
链接使用
href:链接地址
target:控制链接的打开方式
表格
<table> <!-- 表格头部 --> <thead> <tr> <th>姓名</th> <th>年龄</th> <th>性别</th> <th>email</th> <th>薪资</th> </tr> </thead> <tbody> <tr> <td>张</td> <td>22</td> <td>女</td> <td>132131</td> <td>2323</td> </tr> </tbody> </table>
默认属性:
-
border 边框 boder=“1” 边宽
-
cellpadding=10px; 单元格与边框的间距
-
cellspacing =“0” 单元格与单元格的距离
-
宽度属性 width
-
高度属性 height
-
bgcolor:背景色
-
align:表格对齐方式
-
cellpadding=“opx” cellspacing =“0px” 双线合并单线—>粗的 因为两线合并
css语言 CSS属性
细线边框 border-collapse:collapse
表单
功能:用于收集用户数据
action :后台处理这个表单数据的程序地址
提交方式:
method:
GET 默认提交方式
1.以& 显示在地址栏上
2.安全性略低于post,不适合提交敏感数据
3.提交数据量较小
POST :1.不显示在地址栏上,显示在请求头部的 form data里
2.安全性略高于get,适合提交敏感数据
3.数据量大小无限制
-