Question about hyperlinks

Hello guys, can anyone tell me if it’s possible to make text with a website (for example) clickable (hyperlink)?

Thanks!

Hello Pedro! Basically, you’ll need a simple bit of HTML code - which is, for example:

<a href="https://icons8.com/">Icons8</a>

This will then show up like this: Icons8

To use the code above to create your clicky link, simply edit the link in the quotation marks “Icons8” and then the text in the arrows >Icons8<. The tags used to produce links are the <a> and </a>.

The <a> tells where the link should start and the </a> indicates where the link ends. Everything between these two will work as a link.

You may also use use some tutorials for this, for example https://www.quora.com/How-do-you-create-clickable-text, https://www.quora.com/How-do-I-create-clickable-links or https://www.tutorialspoint.com/How-to-Insert-Hyperlink-in-HTML-Page
Hope this helps!

1 Like