Welcome to deBUG.to Community where you can ask questions and receive answers from Microsoft MVPs and other experts in our community.
0 like 0 dislike
1.2k views
in GitHub by 18 19 30

How can I add a clickable image to GitHub ReadMe.MD file, I just can add Images as mentioned at Add images in GitHub but I need to make a hyperlinked image and then click on the image it redirects to the specified link in GitHub!

I can easily do that in the HTML using the below code, But I need to make the same clickable image on GitHub

<a href=""><img src="" /></a>

How to add image with a Hyperlink in GitHub?

related to an answer for: Add images in GitHub

1 Answer

1 like 0 dislike
by 152 169 345
selected by
 
Best answer

How to add a linkable image in GitHub Readme.MD ?

You can easily add a linkable image in GitHub readme.md file using the below code:

[![Title](Image URL)](Link URL)

Example

[![Follow Mohamed El-Qassas GitHub](https://avatars.githubusercontent.com/u/49816567?s=96&v=4)](https://github.com/melqassas/)

Output

Follow Mohamed El-Qassas GitHub

If you don’t ask, the answer is always NO!
...