Monday, September 19, 2011

How to create Internal Link in your Blog or Web page.

Internal linking is the way to link within the post or web page. It is very helpful to jump in different place within the post or page. Most useful in pages where the post is large. It makes post interactive.

Before starting, To understand what it is just click here and you will jump at the end of the post. 

To create a internal link two first of all you have to determine two places.  In first place you place the link and if anybody click on the link he or she will jump to the second place. First determine this two place.

Now if you are working with web page then open the html code window or if you writing in blog then edit html tab. On the first place put the anchor tag as like follow:

<a href="#keyword"> Showing Text </a>

This is the format. Look here On place of keyword you can type anything and these text won't be shown but will be used to determine destination place or the second place. Showing Text portions will be visible in page. This is the first place where people will click to jump.

Now on the second place or on the destination we will place the following code as like as follow:

<a name="keyword">Showing Text</a>


On both Places Keyword must be the same. Showing Text could be anything. Just see the html example:

<html>
<head>
………………………………………………………………………………………………………………….
</head>
<body>
………………………………..
<div style="text-align: justify;">
Before starting, To understand what it is just <a href=" #LastPortion">click here</a> and you will jump at the end of the post.&nbsp;</div>
<div style="text-align: justify;">
……………………
………………………………….
………………………………………………
On both Places Keyword must be the same. Showing Text could be anything. Just see the html example:
……………………
………………………………….
<div style="text-align: center;">
<u><b><a href="" name="LastPortion">End of Post</a></b></u> </div>


</body>
</html>
End of Post

0 comments:

Post a Comment