您的位置:首页 > Web前端 > HTML

html——图片标签

2015-12-09 16:27 483 查看
<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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: