html——图片标签

来源:互联网 发布:linux系统可以做什么 编辑:程序博客网 时间:2024/06/01 07:39


<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<!--
<img> 图片标签
img标签常用的属性
    width: 宽度
        height:高度
        alt:   如果图片资源无法找到,就显示对应的文字,对图片进行说明
-->
</head>


<body>
<!--<embed src="1.mp3" hidden="true"></embed>-->
<img src="3.jpg" alt="古代仕女图" width="400" height="500" border="0" usemap="#Map"/>
    <map name="Map">
      <area shape="rect" coords="267,334,314,351" href="http:\\www.baidu.com" target="_blank">
      <area shape="circle" coords="298,212,16" href="4媒体标签.html" target="_blank">
    </map>
</body>
</html>
0 0
原创粉丝点击