Just starting to learn html and could use some quick guidance. I have this image here: https://i.sstatic.net/kBJEk.png
I would like to place clickable text on the image that links to different pages when clicked, similar to this example: https://i.sstatic.net/jthJJ.png
How can I add clickable text over an image and change the font color when hovering the cursor over it?
Your help with this is greatly appreciated. I am struggling to understand how to overlay items on top of images.
Thanks
EDIT:
I am attempting to add clickable links using:
<a href="google.com">Text</a
>
But I am having trouble positioning it so it appears under the image like this:
https://i.sstatic.net/vwgmn.png
This is my current code snippet:
<div class="container">
<img src="https://growingseedsavers.org/content/images/2021/11/asd.png" alt="Snow">
</div>
<body>
<a href="google.com">Text</a>
</body>