<html>
<head>
<meta charset='utf-8'>
<title>image</title>
</head>
<body>
<img src='D:\0Files\pics\head.jpg' width='80px'><!-- height自适应 -->
<img src='D:\0Files\pics\head1.jpg' width='80px' alt='?'><!-- 当图片丢失或不存在时,alt提示图片内容 -->
<a href='D:\0Files\pics\bg.jpg' target='_blank'>
<img src='D:\0Files\pics\head.jpg' width='80px'>
</a>
<br><br>
<img src='D:\0Files\HTML+CSS+JS\10 hotel.jpg' width='300px' usemap='#map1'>
<form>
<input type='image' src='D:\0Files\HTML+CSS+JS\10 hotel.jpg' width='300px'>
</form>
<map name='map1'>
<area href='D:\0Files\HTML+CSS+JS\10 tableware.html' shape='rect' coords='22,17,75,70' target='_blank'>
<area href='D:\0Files\HTML+CSS+JS\10 room card.html' shape='rect' coords='90,17,142,70' target='_blank'>
</map>
</body>
</html>