Link sample

These are the tags to create the link.

<a href="http://wikipedia.org">Link to Wikipedia</a>

href is the attribute, used to specify the web page the link goes to.
The value for the href attribute is http://wikipedia.org
The value is enclosed in quotes.
http://   means use the hyper-text transfer protocol to link to   wikipedia.org
Only the web site wikipedia.org is specified, without a specific page, so the default page for the site will be shown.
The text within the <a>   </a> tag is what is shown in the page.

You can click on the link, and select the back arrow to get back.

Link to Wikipedia