mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
5be3f71ddd
This makes the image-map test work sensibly in graphical browsers too.
12 lines
435 B
HTML
12 lines
435 B
HTML
<html>
|
|
<body>
|
|
<IMG SRC="image.png" ALT="ImageMap" USEMAP="#map">
|
|
<map name="map">
|
|
<AREA SHAPE="poly" COORDS="24,26, 30,30, 22,40, 15,35, 24,26" HREF="align.html" alt="1">
|
|
<AREA SHAPE="poly" COORDS="21,21, 38,10, 34,19, 39,29, 21,21" HREF="color.html" alt="2">
|
|
<AREA SHAPE="rect" COORDS="12,1, 30,18" HREF="underline.html" alt="3">
|
|
<AREA SHAPE="circle" COORDS="9.5,22, 9" HREF="poocs.net.html" name="91" alt="4">
|
|
</map>
|
|
</body>
|
|
</html>
|