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

2022-03-14 09:09:38 浏览数 (1)

一:列表

1.ul li  ol li  start=2

2.dl

代码语言:javascript复制
<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.热点

代码语言:javascript复制
<img src="./img/aa.jpg"width="100px" height="100px" usemap="#map"/>
<map name="map">
    <area shape="circle" coords="75,75,25" href="http://www.domain.com" alt="" />
    <area shape="rect" coords="0,0,50,50" href="http//news.domain.com" alt="" />
</map>

三表格

代码语言:javascript复制
<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>

0 人点赞