how to use map tag in image ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

how to use map tag in image ?

17th Oct 2016, 8:50 PM
Ali Moonesian
Ali Moonesian - avatar
1 Answer
+ 1
Copied from http://www.w3schools.com/tags/tag_map.asp : <!DOCTYPE html> <html> <body> <p>Click on the sun or on one of the planets to watch it closer:</p> <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm"> <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm"> <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm"> </map> </body> </html>
26th Oct 2016, 11:41 PM
Sean Medlin
Sean Medlin - avatar