html5学习篇:04 列表 表格 和链接

一:列表

1.ul li  ol li  start=2

2.dl

<ol start="3">
    <li>sdfs</li>
    <li>sdfsf</li>
</ol>
<dl>
    <dt>奶糖</dt>
    <dd>牛奶糖</dd>
</dl>

二链接

1.a href=”you.html#haha”锚链接

2.target = _blank 新的窗口

3.热点

<img src="./img/aa.jpg"width="100px" height="100px" usemap="#map"/>
<map name="map">
    <area shape="circle" coords="75,75,25" href="http://www.163.com" alt="" />
    <area shape="rect" coords="0,0,50,50" href="http//news.163.com" alt="" />
</map>

三表格

<table border="1" cellspacing="" cellpadding="">
<caption>我的标题</caption>
<thead>
    <tr>
        <th>Header</th><th>Header</th><th>Header</th>
    </tr>
</thead>
<tbody>
    <tr>
        <td>Data</td><td>Data</td><td>Data</td>
    </tr>
</tbody>
<tfoot>
    
</tfoot>
</table>
posted @ 2014-07-03 23:03  半醉半醒201  阅读(150)  评论(0)    收藏  举报