Computer Science, asked by meghakatiyar1, 11 months ago

what is internal linking and name attribute with the help of coding?

Answers

Answered by paramS5241
0
internal linking is a type of linking in which the data is a linked with other data in the same document.

name attribute is an attribute of HREF tag. the name attribute is used to specify the name of the link. this means that when the program is executed the link is given by the name written in the name attribute of HREF tag.
Answered by AKASHDIPDAS
1
● When you link a portion of the same document in HTML then it is known as internal linking.

● This is achieved by using name attribute of <A> tag.

● CODING :
<HTML>
<HEAD>
<TITLE> Internal Linking </TITLE>
</HEAD>
<BODY>
<H1> LET'S DISCUSS </H1>
<A name="Int 1">
Sharks have a special sense to identify even one droplet of blood in 1 million molecules of water.
</A>
<img src="sharks.jpg" align="center" height="20%" width="20%">
<A href="#Int1"> Do you know?</A>
</BODY>
</HTML>
Similar questions