what is internal linking and name attribute with the help of coding?
Answers
Answered by
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.
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
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>
● 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
Accountancy,
7 months ago
Chemistry,
7 months ago
Geography,
7 months ago
Math,
1 year ago
Math,
1 year ago