.
Text Links in HTML Assignment Help
Website is a collection of web pages, which is created only with the help of links. It permits to move from one webpage to another page through a click. These links are termed ad hyperlinks. The clicks are possible on words, phrases and images
Creation of Hyperlink
In HTML, link is represented using <a> tag i.e. anchor tag. The content between <a> and </a> is formed as hyperlink text
Syntax
< a href= “ URL path” > Link name < /a>
It has target attribute which is used to represent the area where the interlinked document is to be viewed
Base path
By specifying <base> tag, the complete url for every link is not needed
Example

Output

.