Home Tutorials HTML Tutorial Image as Link
Image as Link

Image as Link


12. Image as Link

An image can be wrapped inside an anchor tag to make it clickable. This is often used for logos or banners.

Syntax

<a href="url"><img src="image.jpg" alt="text"></a>

Example

<a href="https://www.skilleco.in">
    <img src="logo.png" alt="Site Logo" width="120">
</a>

Output

The logo image appears and works as a clickable link.
Example

🏋️ Test Yourself With Exercises

Take our quiz on Image as Link to test your knowledge.

Browse Quizzes »