First of sorry if this is a stupid question, but im new to this.
I have a picture of my friends and want to have a pop up with some info and images when i hover over their faces. So far i have managed to make maps on the image that correspond to their faces and made those into links, but I can only get them to be clickable.
Any solution would be helpfull, even if its a quick and dirty hack.
This is the code im working with.
<!DOCTYPE html>
<html>
<body>
<img src="http://104.45.93.236/wp-content/uploads/2019/03/20150621_195100.jpg" alt="Workplace" usemap="#workmap" width="1600" height="900">
<map name="workmap">
<area shape="rect" coords="200,400,310,500" alt="Computer" href="http://104.45.93.236/wp-content/uploads/2019/03/stock2.jpg">
<area shape="rect" coords="557,252,632,344" alt="Phone" href="http://104.45.93.236/wp-content/uploads/2019/03/stock2.jpg">
</map>
</body>
</html>