I want to insert a url link in a text sentence:
“For more information, click this to see what you need to see.”
In this example, the word ‘link’ should be a hyperlink. This is a common feature on websites and apps.
Is this possible?
I want to insert a url link in a text sentence:
“For more information, click this to see what you need to see.”
In this example, the word ‘link’ should be a hyperlink. This is a common feature on websites and apps.
Is this possible?
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>
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!
after clicking :
Thank you
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.