html02笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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笔记的主要内容,如果未能解决你的问题,请参考以下文章