Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2025 Foundation Course
NEET 2025 Foundation Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
915 views
in Web Technology by (29.4k points)
closed by

What are the two types of hyperlinks available in HTML.

1 Answer

+1 vote
by (30.3k points)
selected by
 
Best answer

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.

<Ahref=“c:\main.htmF>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 Commence </A>

</p>

</Body>

</HTML>

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

...