ehelp

Support

Add a link

HTML Instructions on Adding Hyperlinks + Code Templates

Regular text with your html can be hyperlinked by wrapping the the words that you want to hyperlink inside of an anchor tag <a> which will include your destination link.

Words or images can be hyperlinked in this way. See the example below. Replace the highlighted with your destination link. Replace the underlined with the words they will click to go there.

<p>
To read all about this story and more, <a href="/about-us">Check out our About Us page</a>!
</p>

In this example, the user would see something that looks like this:

To read all about this story and more, Check out our About Us page!

Example with image:

<p>
Click to read all about this story and more<br><a href="/about-us"><img src="https://assets.eflorist.com/site/EF-5320/Custom HTML/Picture1.jpg"></a>
</p>
 

See below for templates that can be used for website links and image links:

Website Link Code Template:

<a href=”insert link here”>Insert clickable text here</a>
 

Image Link Code Template:

<img src=”insert link here”>
 

Image with Website Link Template:

<a href=”insert website link here”><img src=”insert image link here”></a>
Did this answer your question?
😞
😐
🤩