S1 HTML 第二章 列表和表格

来源:互联网 发布:民族证券软件下载 编辑:程序博客网 时间:2024/05/30 07:14

列表:

<html><head>  <meta http-equiv="Content-Type" content="text/html;charset=gb2312" />    <title> 列表 </title></head><body><h4>type=disc时的无序列表</h4><ul type="disc">    <li>橘子</li>    <li>香蕉</li>    <li>苹果</li></ul><h4>type=square时的无序列表</h4><ul type="square">    <li>橘子</li>    <li>香蕉</li>    <li>苹果</li></ul><h4>type=circle时的无序列表</h4><ul type="circle">    <li>橘子</li>    <li>香蕉</li>    <li>苹果</li></ul><h4>type=1时的有序列表</h4><ol type="1">    <li>橘子</li>    <li>香蕉</li>    <li>苹果</li></ol><h4>type=a时的有序列表</h4><ol type="a">    <li>橘子</li>    <li>香蕉</li>    <li>苹果</li></ol><h4>type=i时的有序列表</h4><ol type="i">    <li>橘子</li>    <li>香蕉</li>    <li>苹果</li></ol></body></html>


 

表格:

<html><head>  <meta http-equiv="Content-Type" content="text/html;charset=gb2312" />    <title> 表格 </title></head><body><table border="1" width="500" height="200">  <tr>    <td >1行1列的单元格</td>    <td>1行2列的单元格</td>  </tr>  <tr>    <td>2行1列的单元格</td>    <td>2行2列的单元格</td>  </tr></table></body></html>


 

0 0