‏إظهار الرسائل ذات التسميات Blogging Tips. إظهار كافة الرسائل
‏إظهار الرسائل ذات التسميات Blogging Tips. إظهار كافة الرسائل

How to Create Responsive Website or Blogger Template


As the time goes, browsing websites from desktop computers decreasing and using Laptops, Tablets and Mobile devices increasing day by day. So why not to create our website design custom for each types of devices, that fits and looks more attractive for those devices to acquire the visitors entered from those devices.

Responsive web design is the approach that suggests in which design and development should respond user behavior and environment based on the size of the browser screen, platform and orientation.

Responsive web design includes the use of flexible layouts, images and intelligent use of media queries. You can make your blogger template responsive by using special tags in CSS. Media queries (@media) are such tags, which helps to make your CSS for every device screen size. You can make many media queries on CSS that matches for each screen size and you can put custom CSS codes for each media queries.

Here I have explained some steps for creating your blog responsive.



Step1: Add meta tags for responsiveness



Add the following meta tags on your blogger template using the following steps.
  1.  Go to blogger dashboard and click on template
  2. Backup your template for the risk while editing template codes.
  3. Paste the following codes between and <head> and </head> tags.
  4. Save your blogger template.
For website also, paste the following codes between <head> and </head> tags.

Add the following codes to size the contents of blog equal to the device width.

  <meta name="viewport" content="width=device-width/">

Add the following codes to size the contents of blog equal to the device width and device height.

  <meta name="viewport" content="width=device-width, height=device-height/">

Add the following codes to size the contents of blog equal to the device width and initial zoom size.

  <meta name="viewport" content="width=device-width, initial-scale=2"/>

Add the following codes to size the contents of blog equal to the device width, initial zoom size and maximum zoom size.

  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1/">

Instead or writing meta tags, you can do the same with the following codes in CSS.

@-moz-viewport {
                           width: device-width;
}

@-moz-viewport {
                           width: device-width;
                           height:device-height;
}

@-moz-viewport {
                           width: device-width;
                           initial-scale:2;
}

@-moz-viewport {
                           width: device-width;
                           initial-scale:1;
                           maximum-scale:1;
}


This works only for Mozilla browser, for other browsers you can use -o-, -webkit- and -ms- as prefixed properties.


Step2:Add media queries for each screen size



Add the following media queries  between <![CDATA[*/ and ]]> tags.


@media screen and (max-width:320px){
/*For Small Screen Moblies*/
}

@media screen and (max-width:480px){
/*For Smart Phones and iPhones*/
}

@media screen and (max-width:768px){
/*For Small Tables*/
}

@media screen and (max-width:1024px){
/*For Notebooks*/
}

You can add more media queries according to your need for different screen sizes and orientations and can also use min-width: to specify minimum width of screen.

To specify the screen orientations landscape or portrait use

@media screen and (max-width:480px) and (orientation:landscape) {  }



Step3: Write custom CSS code for media queries



Now, you have to add custom CSS codes for each media queries. The default CSS properties written are replaced by the properties written within these media queries. Here is the sample CSS code written for mobile devices, you can add these codes for media screen with max-width 320 and 480 px.

#wrapper {
  width:85%;
 }
 

#content{
 
width:100%;
}
 

#sidebar-left{
 
width:100%;
clear:both;
}
 

#sidebar-right{
 
width: 100%;
clear:both;



Alternate method for adding CSS code with media queries



For the alternate method, you can write media queries with custom CSS codes on a single .css file and link it on header part of  your blog or website as below.

<link rel="stylesheet" media="screen" href="screen.css"/>

You have to give the full path for "screen.css", where the file is placed.

You can also link different style sheet files for different screen sizes as below.

<link rel="stylesheet" media="screen and (max-width:1280px)" href="large.css"/>

<link rel="stylesheet" media="screen and (max-width:480px)" href="small.css"/>



Related Posts:





    How to Create Simple Blogger Template Easily?


    To create successful blog, it needs to create blogger template more attractive and looks more professional. Even you can buy professional blogger template on the web, you may want to create blogger template by yourself for your blog. Creating a professional blogger template is more challenging task, but if you have some knowledge on HTML, XML, CSS and JavaScript, it is possible to create professional blogger template easily by yourself. In this series of tutorial, I am going to teach you basic to advanced steps to create blogger template. Today I am telling you "steps for creating a simple blogger template" with describing basic elements and along with its corresponding style sheet codes.


    Step1: Preparing demo blog for creating blogger template



    To test blogger template you have created, at first you need to set up a blogger blog and have to add some posts on the blog. To create a blog, go to blogger home page, log in using your Google user name and password and then click on create a blog link to get started. Write posts for a blog by clicking on create a new post button from the blogger dashboard.


    Step2: Creating basic elements for blogger template


    Open Notepad file write the codes according to the following format and save it as .xml extension.

    # Creating XML Part


    At first, add the following codes for  Document Type Deceleration(DTD) on XML part.

    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1 -strict.dtd">
    <html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>

    # Creating Header Part


    After that, add the following header elements like head and title of the blog.

    <head>
    <title>
    <b:if cond='data:blog.pageType == "index"'>
    <data:blog.pageTitle/>
    <b:else/>
    <b:if cond='data:blog.pageType != "error_page"'>
    <data:blog.pageName/> | <data:blog.title/>
    <b:else/>
    Page Not Found | <data:blog.title/>
    </b:if>
    </b:if>
    </title>
    </head>

    # Creating CSS Part


    Add custom css codes for your template in the following format. The css codes must be placed inside <![CDATA[*/ and ]]>
    tag.

    body{
    font:normal normal 14px Verdana,Geneva,sans-serif;
    color:#000;padding:0 40px 40px 40px;
    background:#fff;
    font-size:14px;
    }
    #outer-wrapper{
    CSS for outer-wrapper
    }
    #header-wrapper{
    CSS for header-wrapper
    }
    #titlewrapper{
    CSS for titlewrapper
    }
    #descriptionwrapper{
    CSS for descriptionwrapper
    }
    #menuwrapper{
    CSS for menuwrapper
    }
    #contentwrapper{
    CSS for contentwrapper
    }
    #mainwrapper{
    CSS for mainwrapper
    }

    # Creating a Menu 


    To create menu for a blog, add the code in the following format. Replace URL and name of the tabs. 

    <div id='menuwrapper'>
    <ul class='FirstLevel'>
    <li><a href='http://www.homepage.com/' target='_self'>Home
    </a></li>
    <li><a href='http://www.homepage.com/menu1.html' target='_self'>Menu1
    </a></li>
    <li><a href='http://www.homepage.com/menu2.html' target='_self'>Menu2
    </a></li>
    <li><a href='http://www.homepage.com/menu3.html' target='_self'>Menu3
    </a></li>
    </ul></div>

    # Creating blog content

    To add main blog content part, add these codes to create a widget named Blog1.

    <div id='outer-wrapper'>
    <div id='header-wrapper'>
    <b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
    <b:widget id='HTML1' locked='true' title='Header' type='HTML'>
    </b:widget>
    </b:section>
    </div>
    <div id='content-wrapper'>
    <div id='main-wrapper'>
    <b:section class='main' id='main' showaddelement='no'>
    <b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'>
    </b:widget>
    </b:section>
    </div>
    </div>
    </div>



    Step3: Creating gadgets on sidebar and footer.


    To create sidebar and footer and to add widgets  for them add these code, which allows you to add widgets on sidebar and footer.

    <div id='sidebar-wrapper'>
    <b:section class='sidebar' id='sidebar' showaddelement='yes'>
    </b:section>
    </div>

    <div id='footer-wrapper'>
    <b:section class='footer' id='footer' showaddelement='yes'>
    </b:section>
    </div>


    Step4: Installing blogger template on required blog.


    After creating a code file on Notepad in XML format, test it on demo blog. To install prepared template, click on backup and restore button from template option on blogger dashboard. Click on download full template, the xml file will be downloaded. Then go to the required blog then go to Template  ›  Backup / Restore option and browse and upload that xml file. The template will be applied on your blog.




    Related Posts:





    Best Online Sitemap Generators List


    Best Online Sitemap Generators List
    Sitemap is a most important part of any website or blog. A Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site, so that search engines can more intelligently crawl the site. Sitemap makes any website more SEO friendly and helps to index on search engines easily and also helps the visitors to find out the contents on the website. Here are some list of best online sitemap generator tools along with their descriptions, you can use up them to create, place on your website or blog and to submit on search engines like Google, Yahoo, Bing, Ask, AOL etc




    List of Online Sitemap Generators 




    1. xml-sitemaps.comIt is one of the best online sitemap generator tool. It provides free as well as paid or pro service for sitemap creation. By using a free service maximum 500 pages will be indexed in sitemap. Along with XML sitemap, you can create text and HTML sitemaps for the list of webpage on your website.

    2. web-site-map.com: It is best free to use online sitemap generator tool. You can index up to 3500+ pages on sitemap file. After generating XML sitemap, you can validate by using W3C Markup Validation Service. If you want the free tool for sitemap generation I recommended this site.

    3. sitemapdoc.com: Sitemapdoc.com is the another site for generating different formats of sitemaps. You can create XML sitemap, Text sitemap, HTML sitemap and RSS feed. You can check for the image and check website for viruses using AVG, Norton, McAfee, Google etc.

    4. addme.comHere you can generate the sitemap with providing your website URL, Frequency, Priority, Last date modified, Name and Email address. After generating sitemap it will be emailed to you on the given email address.

    5. freesitemapgenerator.comBy using this tool you can index up to 5000 pages on sitemap. After successfully generating the XML sitemap, can download the compressed folder. To generate sitemap you have to create an account first.

    6. auditmypc.comIt is also the free tool to generate XML sitemaps. You can provide different filters, rules and options while generating sitemap files. You can include or exclude URLs and contents as filter.

    7. xmlsitemapgenerator.orgUsing this tool you can easily create HTML, RSS and XML Sitemaps online for free. Sitemap generated by this tool is Compatible with major search engines including Google and Bing. Sitemaps tell search engines when and how often pages are updated, and their relative importance.

    8. sitemaps-builder.com:  Using this free tool for generating sitemap maximum 1000 pages will be indexed at the Site. After successfully generated you have to download the sitemap file at results page and upload it to the root directory your website.

    9. sitemapxml.netAfter Simply entering your website URL, selecting the frequency of website change and providing the last modified date, this free tool generates sitemaps in XML, ROR and TEXT format that can be instantly submitted to Search engines such as Google, Yahoo and MSN.

    10. xsitemap.comAfter just providing website URL, Last modified date, Change frequency and Priority, XML sitemap can be created after few minutes. After successfully generated you have to download the sitemap file and upload it to the root directory your website.






    Factors That Influence Your Websites Rankings


    Factors That Influence Your Websites Rankings
    Your websites rankings in the search engine affect the visibility of your site in search results. Higher ranked websites are always appeared on the top of search results, those sites have greater chances of being clicked. As a result those websites can get high volumes of traffic, those visitors which are obtained from search engines are not only visitors for numbers but also highly targeted visitors. There are so many factors that influence your website rankings, some of the most important factors I have described here, may help you to increase your websites rankings and visibility on search engines by implementing those tips for your website.




    Factors That Influence Your Websites Rankings



    # 1. Textual content on your website


    If the webpage does not have text content or have little text content, search engine could not find anything to index or may be ignored by the search engine. The little or no text content webpage does not appear on the search results.

    To be more visible to the search engine, the webpage must have text content related to your website. To get good rankings for your website on the search result, you have to add more text content to the webpage.





    # 2. Bot permission on robot.txt


    The effective implementation of robot.txt file affects the indexing and ranking of web page in the search engines. If the robots.txt file of your website does not allow any bot to index the page or the robots meta tag of the web page does not allow the particular bot or particular page to index the page, the search engines don't show that page in the search results.

    To be indexed all the pages or the pages you wanted to be indexed by the search engines, you have to change the robot.txt file of your website, so that search engine index the page.



    # 3. Click depth of page from root directory


    It is better to make flat file system than creating deep directory structure. The less distance from the root directory increase the web pages importance and rankings. So the web pages that can be reached with the few clicks from your home page, search engines gives higher rankings and the search engines give lower rankings to the page that require a lot of clicks from home page.



    # 4. Uniqueness of the page content


    Having duplicate contents on the website is not good for search engines. If you have placed same web page twice or more on your website, it may have negative effects on the search engines positions. So do not submit duplicate page on the website as far as possible.

    Along with avoiding duplicate web page, you should also avoid from duplicate paragraphs. Those web pages having duplicate contents may be ignored by the search engines. So you have to remove duplicate paragraphs from the page.



    # 5. Method used for page redirection


    Method of the redirection you have used also affects your websites rankings. If you wanted to redirect the visitors of old URL into new URL, you need to redirect the visitors of old site into new site. A 302 redirect tells the search engines that redirect temporarily and 301 redirect tells the search engines that redirect permanently. So 301 redirection method used in your website increases your websites rankings than 302 redirection method used.



    # 6. Number of links on a page


    Linking your text on another related website or the pages on the same website is a good idea for making your page more resourceful and also to increase the ranking of your page. But too many links on the web page negatively impacts for rankings of your web page.

    If a page contains too many links, search engines might think that the page itself does not contain enough content and does not show pages that have just links to other websites. So try to decrease the outgoing links as far as possible and it is better if number of internal links are greater than number of external links. The total number of link should be less than 200 and it is better if it goes to less than 100. Google prefers less than 100 links on a single page.



    # 7. Uses of meta description tag


    Effective uses of meta description tag helps to increase the search engine rankings for your webpage. It you don't use meta description tag, search engine do not display your webpage on the search result. So add a unique and descriptive meta description tag on a page.

    The too short and too long meta description tag also interrupts negatively by the search engine. So meta description tag should have at least 50 characters and it should not have less than 160 character. The meta description tag also needs to be relevant to the webpage or business and it should not be duplicate.



    # 8. Size of web page


    Web page loading time is also a factor in search engines ranking factors. If the size of website is very big, it takes longer time to load. The search engine crawlers can not index the web page which takes longer time to load. If your webpage is very big, you have to split your page into smaller pages.



    # 9. Tile of the page


    Using appropriate title for a web page is also very important for search engine rankings. The title of page should represent the content of the whole page. While creating title for a web page, should use meaningful keywords related to your content and it should not be too long and too short. A short title may not sufficiently describe the page and long title will shorten when displaying in search results. For better rankings, always use short but more descriptive and keyword rich title and also do not use duplicate title tag.



    # 10. Format of URL


    Format of URL also affects the ranking of a web page. The URL of web page should not use the characters which are not allowed in URL.

    The URL should not be too long and should not use too many parameters. Search engine might not look for rankings information for the web pages having long URLs. Along with high ranked by search engines, a short and descriptive URL also shared on social networking sites.



    Related Articles

    Top 40 SEO Tips for Small Business Website: Part- 2


    Top 40 SEO Tips for Small Business Website

    SEO Tip-21: Submit Articles on Article Submission Sites


    It is known that building links to your site is importance in achieving high search engine rankings, especially in major search engines can be the best idea for creating one way links, which lead to page one results. Article marketing not only provide one way links, it also gave potential information about your website to the customers. You can submit on the top article submission sites like Ezine Article, Article City, Go Articles etc.


    SEO Tip- 22: Insert Keywords on Article Title and the body.


    By inserting keywords on article title and the body your can make your website more visible to the search engine. But extreme use of keywords unnaturally may harm. Normally using keywords less then 5% on the article is better. So only use keywords on the appropriate places.
    Top 40 SEO Tips for Small Business Website
    Top 40 SEO Tips for Small Business Website (Photo credit: Wikipedia)


    SEO Tip- 23: Register Your Domain More Than One Year


    The age and the expiration time of the domain also impact your sites visibility on the search engines. search engines gives priority for the older and having long time expiration date domains in the search result. So it is better to register your domain more than one year.


    SEO Tip- 24: Use Free as well as Paid SEO Tools


    You can use free as well as paid seo tools for optimizing your website for search engines effectively. The most important seo tools that can be used are keyword suggestion or keyword research tool, back-link checker tool, website analyzer tool, keyword density checker tool etc.


    SEO Tip- 25: Submit Press Releases for Link Building


    Submitting press releases on press release site is another way for building one way links to your website. You can use a press release to build links and increase search engine rankings effectively along with placing links on the body of press releases you can create deep linking to your website.

    For Press Release Submission Sites Visit: Top 10 Press Release Submission Sites




    SEO Tip- 26: Use "robots.txt" Effectively


    Robots.txt file tells search engine whether they can access the specific pages of your website. You can access the specific pages of your website. You can also restrict the whole directory also. By using robots.txt, you can restrict the search engines from crawling if they are not useful for the user. This file must be named "robots.txt" and must be placed on root directory.

    To generate 'robots.txt' file using a tool visit: Advanced Robots TXT Generator


    SEO Tip- 27: Prepare Mobile Site and Redirect Mobile Users


    Today's world going towards mobile and other small devices for the internet access. Internet users from the mobile increasing day by day. So mobile site is also became necessary for any website to attract the mobile users. So create a mobile version also of your website and submit to search engine for indexing.

    To create mobile version of your site visit: Make Free Mobile Website


    SEO Tip- 28: Use Latest SEO Tips and Techniques


    Search engines may change their algorithm for displaying the search result on time to time. So you have to get updated about that and have to use the tips and techniques that matches to the change. To get notified about the algorithm changed by the search engines and the tips needs to use to overcome that. You can follow the major seo sites and forums.

    For more information about top SEO sites visit: Best 10 SEO Sites for SEO Tools and Tips


    SEO Tip- 29: Create videos and share them


    Sharing useful and informative videos may be more effective for attracting more visitor towards your website. So give some time to create promotional videos about the services and products provided by your website and share them on video sharing sites like YouTube. Once you have posted video on YouTube, you can post it on your site and YouTube will pick up the link to your site.



    SEO Tip- 30: Declare Language Attribute for Your Website


    Declaring language attribute for your website is most important for country and language targeting. Which can be done by using any of the methods below.

    # Declaring language attribute in the HTML element.

    i.e. <html lang="en">

    # Adding country level domain or sub domain

    i.e. www.mysite.com/np/ or www.mysite.com.np

    # Using alternate language for content in <HEAD>

    i.e. <link rel="alternate" hreflang="en" href="http://example.com/en" />


    SEO Tip- 31: Use "nofollow" tag for external links


    External links on your website passes your websites reputation to the linked website, to stop the follow of reputation you can use "nofollow" tag. Setting the value of "rel" attribute of a link to "nofollow" will tell Google that certain links on your site shouldn't be followed page's reputation to the page linked to. "nofollow" tag mainly useful for linking sponsored links and links on comments. It can be implemented as <a href="www.mysite.com" rel="nofollow"> Mysite </a>


    SEO Tip- 32: Use canonicalization for duplicate URL


    Your single page may have more than one versions of URL representations. For example you may have the following types of duplicate URLs.

    http://www.example.com

    http://example.com

    http://www.example.com/index.html

    http://example.com/index.html

    So canonicalization is the process of converting data in a standard representation. It helps if you want to avoid duplicate page on your site. Canonicalization can be done by using "canonical" in rel attribute on the link tag. It can be implemented as: <link href="http://www.example.com/" rel="canonical" />


    SEO Tip- 33: Find competitor's back-links and try to use them


    Creating high quality backlinks from targeted websites helps to grow your page rank and number of website visitors. To stay in competition with your competitors you have to use the quality backlinks made by your competitors. You can gate your competitors backlinks by using alexa backlinks information or by using any of the backlink checker tools.


    SEO Tip- 34: Use social bookmarking sites to create back-links


    Social bookmarking sites are used for bookmarking your favorite, and useful links from the web and sharing them on public. You can use these services to bookmark your sites important links on public. While using these services, do not submit your links only on aggressively, they may band your account for such works. So it is better to share important links only and share other link from the web also.

    For the list of social bookmarking sites visit: The list of social bookmarking sites


    SEO Tip- 35: Share your links through social networking sites


    Now a days social networking sites are most popular, most of the internet users uses social networking sites like Facebook, Twitter, Google+etc. for sharing their status, photos, videos, files and links. So promoting your site through these sites may be most advantageous to their users. You can share to your friends and subscribers from your own accounts and you can also asked the visitors to share by placing social sharing button on your site.


    SEO Tip- 36: Use Google alerts for link building

     

    You can set up Google alerts for tracking the search results in any search terms. This tool will monitor Google results with predefined search terms and then email to you on the daily basis. You can find out high quality websites from Google alerts in the search terms related to your website and can request for link or can do guest posting or can submit comments on them.


    SEO Tip- 37: Use Google+ authorship for Google search results


    Adding Google+ authorship to your website can increase your websites rank on Google search results. You can add Google+ authorship by linking your content to your Google+ profile i.e. <a href="[profile url]" rel="author"> Google </a> and linking back to your site from contributor section of your Google+ profile.

    For more detail visit: Link your Google+ profile to the content you create


    SEO Tip- 38: Do forum posting on related topics


    Forum posting can also help to build links to other site. You can search for related terms or the questions asked by others about your topic and answer that by signing up on them. So find some forums that mainly focus related on your website. You can find out the forum posting and threads by using any forum search engines.

    For the the list of Top forums visit: List of Top Forms


    SEO Tip- 39: Write guest post on related top blogs


    Guest posting on the top blog related to your websites topic is another method of promoting your website. You can post articles by writing yourself or can ask the blog owner to write a sponsored post. It not only increase the reputation, also helps to create quality back-links. You can find out list of top blog related to your term by using any of the blog search engines.


    SEO Tip- 40: Optimize for local search results


    While optimizing your website for the search engines, you don't have to forget about local search rankings. Local search results are very important for national competition. So specialize your contents for specific city, area or country. Also write reviews about your business location in your city on Google map. Anyone can find out about your business on the local search results.


    Top 40 SEO Tips for Small Business Website: Part-1


    Top 40 SEO Tips for Small Bussiness Website
    Most of the Small Business Website on the internet fail due to lack of knowledge for effectively promoting or doing SEO work for their website. Most of the web traffic came to the website from the major search engines and the visitors came from the search engines are organic visitors, they are only those who are intended to find out about the topic, product or service you are providing. So there are high chances of being customer of your website, the visitors which are coming from the search engines. It is very important to optimize small business website for the search engine, to acquire more traffic which can drive more customers, more sales and more benefits. So I have posted here some SEO tips for your small business website. I hope, it will help to promote your small business effectively.


    Top 40 SEO Tips for Small Business Website



    SEO Tip-1: Find set of suitable keywords for your Organization or Business


    Before starting any website for your organization or business you have to get an idea for website, which can be done by using any keyword suggestion tool. Find out set of keywords that best matches to your business. To find out the set of keywords Try one of the following Keyword Research Tools.


    SEO Tip-2: Create SEO friendly, HTML and CSS Validated Website


    After finding suitable keywords, start to create a website for your business, which should be SEO friendly as far as possible. Try to register your domain that best matches to your business or organization. Also select suitable title for your website use latest technologies while building a website. Use only valid HTML and CSS tags and test using HTML and CSS validation Tools.


    SEO Tip-3: Start a blog to support your website


    It is the fact that blogs are more SEO friendly and instant update is easier. Blogs are more user friendly and easier to communicate to the visitors. To start a blog for your website that supports your website to spread around the web. You can start a blog using any blogging platform sites.


    SEO Tip-4: Add meta keywords to your site and blog


    Add suitable meta keywords on your both website and blog which you have collected by using keyword research tools. The keywords must be unique and it can represent your whole website or blog. It must be a set of  best matching keywords for the website.


    SEO Tip-5: Use suitable Meta description keywords


    Insert meta description keywords describing your site or blog with including your keywords. The meta description tag must be unique and can describe the features and services provided by the website in one or two sentences.



    SEO Tip-6: Create site maps of website and blog


    Sitemap is a most important part of any website or blog. Sitemap makes any website more SEO friendly and helps to index on search engines easily and also helps the visitors to find out the contents on the website. So you should create a sitemap for your website. It is better to make to sitemaps one is XML sitemap for the search engines and HTML sitemap for visitors of your website.


    SEO Tip-7: Improve the structure of your URL


    By improving the structures of your URL, you can make the website or blog more visible to the search engine. Instead of deep nested directory structure, make flat file system, use appropriate keywords in URL and only use lower case letters in the URL.


    SEO Tip-8: Write unique title and descriptions of each page


    Title of the webpage plays most important role for making your webpage more visible to the search engine. The title of the webpage or post of a blog must be unique and must use keyword on it. The meta description for the page must be unique and descriptive.


    SEO Tip-9: Make your site easier to navigate


    The navigation of a website is very important in helping visitors quickly find the content what they wanted. It also helps the search engines to understand the contents on the website. On easily navigable website, the visitors can go to any other page easily from your most visited landing page.


    SEO Tip-10: Offer quality content and services


    Only the quality content and services can attract the visitors and can increase their recognition on their own. So always try to create unique and fresh content for your website or blog. Stay organized around the topic or title of the page or blog post. Also try to write easy to read text on the post.


    SEO Tip-11: Create a useful custom 404 page


    Users will occasionally come to non existing page on the website by following broken link or by typing wrong in the URL. Such a page called 404 page, which displays error message. You can redirect such visitors to the right page of your website by instructing them by setting up custom 404 page.


    SEO Tip-12: Use only optimized images


    To optimize your site on the search engines you have to optimize your used images also. To optimize the images you have to have to make the size of the image small and clear as far as possible and format of the image should be in .png or .jpeg but .png format is the best. You should use alt attribute and title tag on the image and the title should be keyword of the page.
    For image optimization Tip Visit: How to Optimize Images for Web Using Photoshop and ImageReady?


    SEO Tip-13: Use heading tags in appropriate places


    Search engines gives more value for the heading tags used in a post. Appropriate uses of heading tags from H1 to H4 makes your website or blog more valuable. The title of the page should be H1 type of heading and the sub title under it should be H2, H3 and so on.


    SEO Tip-14: Try to create deep link on other sites


    Creating links on another highly ranked site improves your website reputation and ranking and it is better to create deep links on them. While creating links to other site you should use better anchor text to build keyword rich links.


    SEO Tip-15: Do internal linking effectively


    Internal linking within website or blog also valuable not only for better ranking but also helpful for making your website more navigable. Effective internal links can spread visitors of one page to another page easily, which increases the overall performance of your website.


    SEO Tip-16: Submit your website or blog on quality directories


    Most of the major search engines takes information from the top web directories like Dmoz. So submitting your website or blog on high quality web directories increases the possibility of indexing by the search engines. Also helps to appeared on the top of the search result. If you have a blog you can submit on top blog directories also.

    For the list of blog search engines visit: Top 20+ Lists of Blog Search Sites and Directories 


    SEO Tip-17: Submit your website on major search engines


    To be indexed by the search engines you have to submit your website on the major search engines. While submitting your website on the search engines, it is better to submit on them manually. But your can also use automatic submission tools for fast submissions.

    To submit your site manually visit: List of Top 65 Search Engine Submission Add URLs

    To use automatic submission tool visit: List of  Free bulk search engine submission tools


    SEO Tip-18: Create e-books and slideshows to submit on file sharing sites


    Creating e-books and slideshows about your business, organization or website and sharing on different file sharing sites and other social media increases the popularity of your business and website. And the link of the file can drive number of traffic to your website.


    SEO Tip-19: Link to your homepage correctly


    Linking your home page on other pages correctly helps the visitors to go to the home page easily and also helps the search engines to know about your homepage. While linking home page, you should use the word 'Home' on the anchor text and should also use 'rel='home' ' on the link.


    SEO Tip-20: Use free SEO tools provides by Google


    Google also provides lot of tools for optimization of your website or blog. The free keyword suggestion tool is provided by Google Ad-word. Google webmaster is another set of services where you can submit your websites sitemap and can track your website. Google analytic is also another tool for real time and advanced analysis of your site.

    For more about Google services visit: How to Utilize Google Services for effective SEO?

    For More SEO Tips Visit: Top 40 SEO Tips for Small Business Website: Part- 2



    Related articles

    Best 10 SEO Sites for SEO Tools and Tips


    English: seo block
    English: seo block (Photo credit: Wikipedia)
    Almost all of the website traffic came from search engines. Any website can be succeeded only when it is appeared on top of search result of major search engines like Google, Bing, Yahoo etc. SEO is the most important for optimizing any website or blog. SEO helps your site or blog to be appear on the top of search result for their keywords. For its successful implementation, it is necessary to understand about best search engine optimization tips and tools. I have listed here some websites which are on the top list for providing SEO Tools, Tips and Training.



    Best 10 SEO Sites for SEO Tools and Tips


    # Majestic seo.com:


    Majesticseo.com is one of the Top 10 SEO leading site. It provides lots of tools and plugins for effective optimization of any website and to establish them as a leader for their keywords. The 'site explorer' tool explores the url or domain in a way to find out great detail about that url. Keyword checker is another great tool provided by the site, which searches the keywords for their frequency and search volume on the internet. Its comparetor tool can compare up to five sites with great detail. It also provides best plugins for Chrome and Firefox to directly find out visited site from the browser.


    # Link assistant.com:


    It provides a complete set of all in one full set software application for free as well as pro services. It may be the worlds no. 1 SEO software with full power of Google and other major search engines top ranking. The different applications provided by link assistant are 'Rank Tracker' for keyword research and rank tracking, 'Website Auditor' for structure and content optimization, 'SEO SpyGlass' for finding out your competitors back-link and 'Link Assistant' for all link management task like creating link directory, establishing link etc. It also provides another powerful tool for social medial management called 'BuzzBundle' which can find out demands for any topic and keyword on different social media sites, forums and blogs.


    # Moz.com:


    It is the topmost site for SEO Tools and and services, which was established on 2004 as the name of seomoz.org and came into this stage by improving and introducing new tools and techniques as the time goes. Moz provides different types of free and paid tools for better and effective SEO. Get listed tool, Follower-wonk tool, Open Site Explorer, Mozbar and Mozcast are the free tools and Mentions tool, Search Engine Ranking Tool, Keyword Optimization tool and Keyword Difficulty tool are the paid tools provided by Moz. The free SEO tools provides basic services and paid tools provides advanced and complicated services.



    # reventools.com:


    It is also the best SEO site among the other sites. It provides lots of tools for the complete and most effective SEO. The tools provided by reventools are Site Auditor Tool, Keyword Ranking Tool, Link Management Tool, Keyword Manager Tool, Backlink Explorer and many more. It integrates data collecting from Moz , MajesticSEO and Google Adword and also provides your keyword ranking on Google and Bing. The Backlink Tool creates valuable links and manages them effectively. The keyword and competitor manager tool manages your and competitors keyword. A free 30 day trial option also available, where you can find out great detail about it and can use the tools on free during the trial period.


    # Semrush.com:


    It is also another great tool for SEO and advertising research. You can check the position of your site for organic search and also for the advertising research, your position changes and about your competitors. You can also check your websites back-links by domain and sub-domain. It is also best for keyword analysis, you can get advanced report about your websites organic keywords, ads keywords, competitors in organic search, competitors in ads and also about publisher and advertisers. You can use almost all the tool even in the free version with limitations.


    # Webceo.com:


    It was founded on 1992 as the name of Radiocom and when it becomes a top international leader on SEO, changed to Webceo in 2000. Mainly it provides two platform, one is cloud - based software, which can be accessed on browser and another is windows - based software, where you can use the tools on the limit. The different tools that can be used as a free user are site auditor tool - to examine your site, keyword tool - to find out the more related keywords for a given keyword, back-link checker tool, submission tool, rank checker tool, buzz tracker tool and so more.



    # Smallseotools.com:


    Smallseotools.com is better for free online SEO tools. It is the newest and fastest growing site for seo tools. It provides different types of tools to optimize your website effectively. The tools provided by it are page rank checker, back-link checker, keyword density checker, keyword position checker, search engine pingler and many more.


    # Seobook.com:


    It is one of the Top 10 site for SEO Tips, Training and Tools. It is specially best for great SEO Tips and Training and also provides lots of free tools. The tools provided by seobook are SEO Toolbar for Firefox, Keyword suggestion tool, Rank checker tool and other premium SEO Tools. You can sign up here for free and can receive hundreds of tools and training on free.


    # Seochat.com:



    It is the must popular and useful site for discussions about search engine optimization. It is very helpful for the beginners and also for professionals for improving their SEO knowledge. You can join on this forum with free for charge to view the discussions and to ask any question relating to SEO. The most popular terms discussing on this forums are Google Search Optimization, Bing Search Optimization, Social Media, Google Page Rank and many more. Lots of of seo tools are available here, you can use them on free. Google back-link checker tool, Google keyword suggestion tool, Page speed test tool etc. are the most important tools provided by seochat.


    # Seo.com:



    It is also the best 10 seo site for better seo tools and tips. It gives different services like keyword research, competitive analysis of your site, link building, local seo, mobile seo, video seo and so on. It also provides free and instant report of your website. But it does not provide direct tools for simple seo as well as site analysis, link checking and keyword research. It is better for professional services.

    How To Set Up Facebook Like Button in a Blogger?

    Facebook Like Button

    In this tutorial you can get simple steps for How to set up a Facebook Like Button on your bloggers blog. By adding this on your blog you get more likes for your Facebook Fan Page from the visitors of your blog. It can help to get more likes and to share your post updates to your subscribers. You can pull your Facebook Page subscribers to your blog and can increase your blogs page views, as a result you can be more benefited from your blog.

    If you want to place Facebook Like Box / Fan Box instead of like button you can visit: How To Set Up Facebook Like Box in a Blog?

    By adding Facebook Like Button your blog readers can
    • See how many users already liked your Facebook Page.
    • Directly like your Page without going to the Page.
    • See some faces of the friends who already liked your blog if you activated that.



    Steps to be followed To Set Up Facebook Like Box in a Blog


    1. Get your Facebook Page URL at first.

    facebook-page-url

    • Visit Facebook and go to your page
    • Copy the URL from the Address bar on the clipboard.

    2. Configure the setting for your Like Box.

    facebook-like-box-config

    • At first go to Facebook Developers Page.
    • Paste the copied URL on the Facebook Page URL Text box.
    • Change width,  layout style, font, color scheme as you like or as matches to your blog.
    • Check or Uncheck on the Send button check box to show or hide Send button.
    • Check or Uncheck on the Show faces check box to show or hide the faces.
    • At last click on Get code button. You can see the code like below from HTML 5 tab.
    facebook-like-box-code


    3. Add Code on the Blogger widget.


    add gadget on blog


    • At first go to your blogger dashboard Layout option.
    • Click on Add Gadget option.
    • Choose HTML/JavaScript option.
    • Paste HTML code and click on save and view your blog.

    How To Set Up Facebook Like Box in a Blog?


    In this tutorial you can get know about How to set up a Facebook Like Box or Fan Box on your blog. By adding this on your blog you share your Facebook Fan Page to get more likes and to share your post updates to your subscribers. You can pull your Facebook Page subscribers to your blog and can increase your blogs page views, as a result you can be more benefited from your blog.

    If you want to set up Facebook like Button instead of like Box you can visit: How To Set Up Facebook Like Button in a Blogger?


    By adding Facebook Like Box or Fan Box your blog readers can
    • See how many users already liked your Facebook Page.
    • Directly like your Page without going to the Page.
    • See some faces of the friends who already liked your blog if you activated that.
    • See recent post on your page if your activated that.


    Steps to be followed To Set Up Facebook Like Box in a Blog


    1. Get your Facebook Page URL at first.


    Facebook page URL


    • Visit Facebook and go to your page
    • Copy the URL from the Address bar on the clipboard.

    2. Configure the setting for your Like Box.


    Facebook page configuration


    • At first go to Facebook Developers Page.
    • Paste the copied URL on the Facebook Page URL Text box.
    • Change width, height, and color schema as you like or as matches to your blog.
    • Check or Uncheck on the Show header check box to show or hide the header.
    • Check or Uncheck on the Show faces check box to show or hide the faces.
    • Check or Uncheck on the Show stream check box to show or hide the recent post on the page.
    • Check or Uncheck on the Show border check box to show or hide the border of the box.
    • At last click on Get code button. You can see the code like below from HTML 5 tab.
    Facebook like box code


    3. Add Code on the Blogger widget.


    add gadget on blog


    • At first go to your blogger dashboard Layout option.
    • Click on Add Gadget option.
    • Choose HTML/JavaScript option.
    • Paste HTML code and click on save and view your blog.

    فيديو الأسبوع