Computer Science, asked by ahemant885, 7 months ago


Write a simple html code to show an example of internal linking.​

Answers

Answered by lakshkon
11

Answer:

<!DOCTYPE html>

<html>

<head>

</head>

<body>

 <a href="#lession1">Lession.1</a><br />

 <a href="#lession2">Lession.2</a><br />

 <a href="#lession3">Lession.3</a><br />

 <a href="#lession4">Lession.4</a><br />

 <br />

</body>

</html>

Explanation:

HTML internal link is linked within the same web page. This link can be an absolute path or relative path.

HTML internal link name is followed by the hash sign(#). You have to assign an id to refer section of your page, which is referred to as an internal link to the same page.

When you click on an internal anchor link, you will scroll automatically to the referred section and display it on your browser.

Answered by divyanshugb
3

\huge {\green {\sf {\underline {\underline {Answer}}}:-}}

A website is a collection of web pages which are interlinked with each other and contains related information. These web pages are linked with the help of a feature of HTML called hyperlink. A hyperlink is generally an underlined text which when clicked will take you to another web page. Generally, hyperlinks are seen in blue colour. Images can also be used as hyperlink. When the mouse is hovered over it, the mouse pointer changes to hand shape.

HTML allows us to create two types of linking which are:

  • Interlinking: The process of linking a particular section of the same web page is called interlinking. In this case, the hyperlink and the linked section appears on the same web page. Hence, interlinking is also known as internal linking.
  • Intralinking: The process of linking a web page to another web page of the same website or another website is called intralinking. It is also known as external linking.

Let us create a web page using the<FRAMESET> and <FRAME> tags.

<html>

<head>

<title> Frames </title>

</head>

<FRAMESET cols="35%, 65%">

<frame src="Home.html">

<frame src="Activities.html">

</FRAMESET>

</html>

Step:1 Open this HTML where it is saved.

Step:2 Now, Open that html

Step:3 In the attachment, This html shown look like this.

\huge\dag\sf\red{By \: Divyanshu}

Attachments:
Similar questions