Instruction
1
To create a clickable link, use known HTML tag <a href=></a>.
2
After the equal sign, paste the url copied from the browser that you want to share with others, and inside of the tag between the angle brackets, enter the text for future links, which will appear in clickable form in your message. Thus, the code for the links will look as follows: <a href="PAGE URL"> YOUR TEXT</a>.
3
You can create a clickable link not just from a text string, but also from any images. To turn the picture into a link, use the following code:<a href="PAGE URL"><img src="image URL"></a>.
4
If you want a link that will click your companion, opened in the current window and a new window will modify the code like this:<a href="PAGE URL" target="_blank">YOUR TEXT</a>
5
To create clickable links, you can use the a href tag, but the tag url. Copy the page address from the address bar of the browser. Use the following code to insert links:[url=ADDRESS of PAGE]LINK TEXT[/url]
6
The result will be the same as in the previous case, the link will turn into a text string that, when pressed, will allow you to browse to any website. However, the url tag does not work correctly on all sites, so it is recommended to use the generic HTML tag a href.