1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <html> <head> <title>点击图片的左边是百度,右边是微博</title> </head>
<body> <img src="./icon-hexo.png" usemap="#top_bg"/>
<map name="top_bg"> <area alt="百度" href="http://www.baidu.com" shape="rect" target="blank" coords="0,0,300,300"/> <area alt="微博" href="http://weibo.com" shape="rect" target="blank" coords="400,0,700,400"/> </map> </body> </html>
|