Currently, I have set up an image with various clickable areas on it, and I want to display a description when the user hovers over these areas. My current solution involves adding the descriptions as titles, but I feel like there might be a better way to achieve this.
Since the tooltips generated by the titles look quite basic, I am looking for ways to style them or find alternative methods to display descriptions on hover. Any guidance on this matter would be greatly appreciated!
Here is the code snippet that I've implemented so far:
<img src="https://i.ibb.co/x11LcrM/team.png" usemap="#image-map" />
<map name="image-map">
<div><area
target="_blank"
alt="leftGirl"
title="What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s
, when an unknown printer took a galley of type and scrambled it to make a
type specimen book. It has survived not only five centuries, but also the
leap into electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets containing Lorem
Ipsum passages, and more recently with desktop publishing software like Aldus
PageMaker including versions of Lorem Ipsum. https://www.lipsum.com/"
href="https://www.webs.com/themes"
coords="59,669,21,848,75,1151,12,1439,288,1448,568,1446,548,1008,474,691,426,612,400,341,301,281,198,367,161,618"
shape="poly"
/>
</map>