user432584920684
user432584920684

Reputation: 389

Make logo redirect to main page? (How to add hyperlink to image?)

Currently, the HTML code for my logo thus far is...

<div align="center">
<img width='300' height='40' src='/img/logo.png' />
</div>

How would I make it so that if I clicked this image, it would redirect me to the main page?

Thanks

Upvotes: 0

Views: 5946

Answers (2)

Eliran Malka
Eliran Malka

Reputation: 16263

wrap the img in an anchor element (a) and grant it with the href containing the homepage link.

Upvotes: 2

Taha Paksu
Taha Paksu

Reputation: 15616

<div align="center">
<a href="/"><img width='300' height='40' src='/img/logo.png' /></a>
</div>

Upvotes: 6

Related Questions