Sunday, 24 March 2013

How to write SEO enable post on a page.

SEO Optimization


We things that post aren’t a fact for seo. We just thing write something use some keyword and tag for seo. It is a false idea. Now I shear the best system to write a post that help your post visibility in search engine.
If we write few word in a post it not suitable for search engine. We write minimum 400-500 world for a post. Search engine like the post that have more information.
If you write the big content in your site you get the large number of visitor from the search engine. SEO increase your site visibility.
In every post you use 3-5 keywords. Keyword limit is depends on the size in your post. If your write big article you use more keyword. High light some keyword in a post. Use bold and italic tags for identify your keyword.
When a people search something search engine show the result depending the post keyword and description. Search engine select those site who have many backling and optimize article.
SEO is a simple matter if you want you will be SEO expert. Learn and get knowledge about seo. It help to increasing your page rank. SEO is necessary for establish a website.

Friday, 22 March 2013

On page optimization

On page optimization

The website I want to optimize in  the to keyword enable seo is called On page optimization. Its help affecting search engine visibility.

Architecture / Website Planning
Title Tag
Meta Tag
·         Keywords
·         Description
Robots.txt


Content
·         Keyword, key phrases, long tail keywords.
·         H1, H2, H3 tags.
·         Hyperlinks, Alternate Text.
·         Image Optimization.
SEF ( Search Engine Friendly) URL
·         Bread Crumps.
·         Web page link.
·         Web page internal Linking.
·         Internal Anchor Link.
·         Sitemap (Submit your site in Search Engine, Like Google, Yahoo etc.)
W3C Validation (Script Validation)

Thursday, 21 March 2013

HTML Basic : HTML tutorial – 01



HTML tutorial

Hyper Taxt Markup Language (HTML) is important for every kind of website.
Now I show that how HTML work:

We use notepadfor practices HTML.

When we start HTML we must use ‘< ’

Main code:
<html> (start)
           
           
           
</html> (finish)

/ important for finish.


            <html> (start)
            <body>          

(We write here something)

            </body>
</html> (finish)


*** Now we show how to define Header in HTML code

            <html>
            <body>
            <h1> This is a heading.</h1>
            <h2> This is a heading.</h2>
            <h3> This is a heading.</h3>
            </body>
</html>

When we save it then use name.html







Now we know that how to create a paragraph in HTML. That means the paragraph of the sentence. It starting code is <p> and end code is </p>.

 
<html>
<body>
<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
</body>
</html>

HTML formatting : HTML Tutorial – 03

We discuses now about the formatting of HTML code. Now we know that how to changes in text format. The Bold, Italic and Underline format.

<b> (For Bold Tag) </b>
<i> (For Italic Tag) </i>

Now we know the font size, font and the color of the text. How to we change is show in down:
<html>
<body>
<p>
<font size="7" face="arial" color="red">
This paragraph is in Arial, size 7, and in red text color.
</font>
</p>

<p>
<font size="3" face="verdana" color="blue">
This paragraph is in Verdana, size 3, and in blue text color.
</font>
</p>

</body>
</html>