Check out example codes for "html a tag". It will help you in understanding the concepts better.
Code Example 1
<a href="https://www.google.com">Visit google.com!</a>
Code Example 2
<a href=""></a>
Code Example 3
<a href="https://www.w3schools.com">Visit W3Schools.com!</a>
Code Example 4
The <a> tag defines a hyperlink, which is used to link from one page to another.
The most important attribute of the <a> element is the href attribute, which indicates the link's destination.
By default, links will appear as follows in all browsers:
1. An unvisited link is underlined and blue
2. A visited link is underlined and purple
3. An active link is underlined and red
Creating a link to programmingquest.com:
<a href="https://www.programmingquest.com">Visit ProgrammingQuest</a>
Code Example 5
<a href="#"><!-- The "#" to be replaced with filename or website address -->Go Somewhere</a>
Code Example 6
<a href = 'website.com/your/linked/page'>Text in link</a>
Learn ReactJs, React Native from akashmittal.com