I'm attempting to create a clickable image that will redirect users to another site when clicked. Here's the code I've tried:
<div class="haus">
<a href="http://google.com"><img src="http://schwedenladen.de/wp-content/themes/schweden/style/img/haus_icon.png" alt="Haus"></a>
</div>
CSS CODE
.haus {
height: 100%;
margin-left: 50px;
padding: 0 0 5px;
width: 30px;
border:1px solid red;
z-index:999;
}
However, I am not seeing the hyperlink icon when hovering over the image.