首页 > 代码库 > html02笔记
html02笔记
多媒体标签
图片标签<img>
src width height 为了防止图片不失真,宽度和高度设置一个就好
alt 找不到图片时会显示,并且有利于SEO
站点地图功能
先定义图片
<img src="" usemap="#站点名称">
利用类似于锚点的功能
shape:rect矩形 circ:圆形 poly:多边形
coords:坐标
<map name="站点名称" id="站点名称">
<area shape="" coords="" href="">
</map>
音频
<audio src="" controls="controls">
</audio>
视频
<video src="" controls="controls" width="" height="" loop="loop" poster="./aa.jpg" autoplay="autoplay">
</video>
flash
<embed width="" height="" src="">
</embed>
表格
<table border="" align="" cellspacing="0" cellpadding="3">
<tr>
<th></th>
<td></td>
</tr>
</table>
属性:
align 水平
vlign 垂直:top middle bottom
rowspan 上下合并
colspan 左右合并
html02笔记