Wednesday, 22 June 2016

On-page SEO Continue... Interlinking

Interlinking - Inter Linking is the process of search engine optimization to connect one page from other of the same domain in such a way to that increase blogs / websites visibility to the readers.

In others words,


Internal linking is the link building or a hyperlinks to a target keyword of the same domain

This is the technique of connecting one post/page of website to other post/page of same domain with the relevant information by the means of hyperlinks.

Code Sample
<a href="http://www.same-domain.com/" title="Keyword Text">Keyword Text</a>
Optimal Format
Use descriptive keywords in anchor text that give a sense of the topic or keywords the source page is trying to target.

Why are Internal Links Important for SEO?
Because links are one of the most important factors that search engines such as Google use to rank and order websites in visibility.
  • Internal links are help in rank better actually it improve the link flows / page rank to individual pages on your site.
  • The anchor text of links helps Google to understand the context of a webpage and to rank better.
  • It helps the google bots crawl and access different parts of your site
  • Internal links also improve user experience.

On-page SEO Continue... Heading Tags

Heading Tags - There are 6 types of Heading Tags

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

Examples

h1 { 
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h2 { 
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

same as for h3, h4, h5 and h6

Heading from (h1-h6) denotes the section heading. Where as the order & occurance of heading is not constrained by the HTML DTD. Always use one H1 Element on any page. Google has recommended this in the past.
Many argue that having more than one H1 per page is sensible in some instances (and HTML5 certainly allows for this). Use targeted keywords in one <h1> heading tag - and believe this is the way the W3C intended it be used.
Have never experienced any problems using CSS to control the appearance of the H tags making them larger or smaller. Use as many H2 – H6 as is necessary depending on the size of the page, but use H1, H2 & H3.