HTML

Image Links

An image can be used as a hyperlink by placing the <img> element inside an <a> element.

<a href="https://www.google.com">
    <img 
        src="image.jpg" 
        alt="Click to visit Google"
        width="300"
    >
</a>
Interactive Sandbox
HTML/CSS/JS