ive used <map and <area tags 2 create a clickable area on the img, is there any other way 2 do the same thng usin another tag? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

ive used <map and <area tags 2 create a clickable area on the img, is there any other way 2 do the same thng usin another tag?

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>

14th Nov 2017, 5:06 PM
RiGeL
RiGeL - avatar
1 Answer
+ 1
Not that I know of unless you could use SVG, but I don't know if I completely understand you question
15th Nov 2017, 3:21 AM
Caleb Royer
Caleb Royer - avatar