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

List the steps for creating a hyperlink with an example.

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 tLIs. There are two types of Linking.

(1) External Linking.

External links are hyperlinks given to another page. By clicking on hyper text 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> Commence ©oup</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>

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.

...