The power of HTML lies in the ability to provide hyperlinks. <A> tag is used for this.
There are two types of Linking.
(1) External Linking. External links are hyperlinks given to another page. By clicking on hypertext we can link or go to other web pages.
<A> Anchor tag is used for External Linking.
<A href= “c:\main. html”>Main</A>
(2) Internal Linking- Internal Links are given to a section in the same document.
<HTML>
<HEAD>
<Title>Internal linking</Title>
</HEAD>
<Body>
<p><A name=”Bio”>Biology Group</A><BR>
Subject combinations are Physics, Chemistry, Mathematics and Biology.<P>
<P><A Name= “comp”> computer group</A><BR>
Subject combination are Physics, Chemistry, Mathematics and Computer Science.<p>
<p><A name = “Comm"> Commerce Group</A><BR>
The subject combination are Business studies, Economics, Accountancy and Computer Application
<br><A href=”#Bio’’>Go Biology</A>
<br><A href=”#Comp”>Go Computer</A>
<br><A href=”#Comm”>Go Commerce</A>
</P>
</Body>
</HTML>