How do I add a url link in a text sentence?

Hi Michael,

You can use the HTML Markdown component and add this code :

<h3>For more information, click this <a href="URL">link</a> to see what you need to see!</h3>

example :

<h3>For more information, click this <a href="https://www.adalo.com/">link</a> to see what you need to see!</h3>

image

after clicking :

Or you can use the Markdown Render component and add this code :

### For more information, click this [link](URL) to see what you need to see!

example:

### For more information, click this [link](https://www.adalo.com/) to see what you need to see!

image

after clicking :

Thank you

3 Likes