Search This Blog

&

Advantages of using external CSS

Monday, October 25, 2010

CSS Stands for Cascading Style Sheets. CSS are used to separate the stylist elements of a page such as colour and fonts from the content of the page such as header tags and paragraphs. You can learn CSS from easy W3schools.com tutorials.

Advantages of using CSS in your website:


Full control of page structure
CSS allows you to display your web page according to W3c HTML standards without making any compromise with the actual look of the page.

Google gives value to the web pages that are well organized, though its designers that choose to ignore standards and guidelines, because incorrectly they believe standards lead to bland pages. Using Cascading Style Sheets (CSS), designers can make pages with good lookup, which can be changed easily any time.

Smaller file sizes
By separating styles from HTML page and putting it into a standalone CSS style sheet (.css file), designer can reduce the of code in your web pages. Pages with less code have smaller file sizes and Google and other major search engines prefers pages with smaller file sizes.

Apart from that Google doesn't define the actual page size of the web page, but community of search engine optimizers believe that the size of a web page is not be greater than 100KB.

Hide content from browsers while it still gets picked up by Google
CSS plays an important role when you need to hide specific code or content from web browser but not from the search engines. For example you may have some content like site navigation, that you only want to appear in print, or on the screen .The advantage of CSS is that search Engine will still crawl and index all of the content of your site navigation.

How to do 301 Redirection?

Friday, October 22, 2010

Need of 301 Redirection
Do you want to change the filename but worried about its current search engine ranking? You just need to do a 301 redirection from old URL to new URL which preserves your old web page rankings. 301 redirection is search engine friendly and treated as permanent redirection in search engine optimization process.

We use different codes for different websites as following.

PHP Redirection Code
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>

JSP (Java) Redirection Code
<%
response.setStatus(301);
response.setHeader( "Location", "http://www.new-url.com/" );
response.setHeader( "Connection", "close" );
%>

ASP Redirection Code
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"
%>

ColdFusion Redirection Code
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">

JSP Redirection Code
<%
response.setStatus(301);
response.setHeader( "Location", "http://www.new-url.com/" );
response.setHeader( "Connection", "close" );
%>

.htaccess Redirection Code
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]

I hope that above codes will help you somehow.

Basic elements to consider in on-page SEO optimization.

Monday, July 5, 2010

1. Title Tag
2. Meta Description and Keywords
3. Content Optimization
4. Image Optimization
5. H-Tags (Headings H1, H2, H3, etc.)
6. Internal Linking Structure


Title Tag Optimization
Title tag is defined as the title of any document. It should be short but descriptive enough for the visitors to identify the business offerings. Title tag can be limited up to 70 characters. Company name and keywords are generally included in Title.

Meta Description and Keywords
Meta description should contain a brief description of the website focusing on the areas and services that the business is specialized in. Generally a meta description contains around 200 characters.

Meta Keywords is simply a comma separated list of targeted keywords for the page. In these days Google not consider it, but some search engines are considering this tag for relevancy.

Content Optimization

There are 4 parameters which we have to consider while optimizing any website.
Keyword Density: Ideally it should be 2 to 3%
Keyword Prominence: Keywords should be used in first as well last sentences of the content. The concept is “Keywords should be nearer from start as well end of the HTML page.”
Keyword Proximity: The distance between the two occurrence of the same keyword in called keyword proximity.
Semantic Keywords: Also use Synonyms and related words in content.

Image Optimization

Search Engine spiders can only read text but not images. So we need to use some special tags for the images in order to give them some meaning for web crawler. We use Alt text and file names to optimize images.

H-Tag Distribution

Header 1 should be used to define the most important section of your page.
Header 2 and 3 can be used for Page/Post titles or other important sections of the pages.
Keywords should be included in these H-Tags. We can also use Bold (strong) and Italic tags for content formatting.

Internal Linking Structure
Try using good Anchor Text when linking to other pages. Include the appropriate keyword in the anchor text which gives the outbound link a ‘proper meaning’ and value.
Anchor Text is defined as “Words Used behind the link”.

Career in SEO

Tuesday, May 25, 2010

In today's era, some people think that SEO is not a good field, but in my opinion it is the best job which i enjoy most.

Because in search engine optimization, every day we get a new site, new ideas and many new things to know.

We face a new challenge everyday, learn a new technique everyday and many new process.