How to create pictured-hyperlinks?

How do you create hyperlinks, like instead of a blue link, it’ll be a thumbnail or a picture

Fairly easy, just fill in the blanks :slight_smile:

<a href="YourLink" title="optional"><img src="Link To Image" alt="optional" /></a>
2 Likes

Thanks

Also, if you don’t want to use HTML you can use Markdown.

This is a link in markdown:

[Folksy](http://folksy.com/)

This is an image in markdown:

![Folksy logo](http://folksy.com/images/folksy-colour.png)

This is a linked image in markdown

[<img src='/uploads/default/2681/a82211baedcc61ad.jpg' alt='bunny'>][1]

[1]: http://www.tehcute.com/

bunny

3 Likes