Here is an example image:
https://i.sstatic.net/EerkN.jpg
This image shows a desk with various elements, and I am looking for a way to make parts of the image interactive.
For example, clicking on the monitor would take you to a specific link, and clicking on the speaker would take you to a different link.
The challenge is to achieve this using only CSS and HTML without relying on JavaScript or any other tools.
Is this even possible?
Thus far, I have only come across websites offering interactive SVG maps...
I am aware that I can use:
<img src="https://i.sstatic.net/EerkN.jpg" usemap="#menu_header" />
<map name="menu_header">
<area coords="117,214,271,266" href="X" shape="rect" />
<area coords="272,214,411,266" href="X" shape="rect" />
<area coords="412,214,635,266" href="X" shape="rect" />
<area coords="636,214,816,266" href="X" shape="rect" />
</map>
However, I would prefer to use more intricate shapes that match the actual objects like the speaker and monitor, rather than just rectangles.