Showing posts with label Search. Show all posts
Showing posts with label Search. Show all posts

Thursday, November 27, 2014

Integrating social meta tags into WordPress, Tumblr and Blogger

Integrating social meta tags into WordPress, Tumblr and Blogger

Social media meta tags make your content look better on social media. You can control how your post or update shows up in news feeds. And handsome social media updates make your content more appealing.

Meta data allows you to tell social media platforms how titles, images, and more should show up in the newsfeeds on those sites. The rel=publisher and rel=author also are on this list because those two tell Google+ to link your site to your company page and your posts to your profile, respectively. Using meta data on social media (which also shows up in searches) shows potential readers more information such as author byline, description, and images so they are more apt to click on your content.

You may have heard about the Open Graph protocol which enables any web page to become a rich object in a social graph. Facebook, Pinterest, LinkedIn, Google+, and most social websites use these Open Graph meta tags. Twitter has its own Twitter card property to get rich snippet. Google+ and Pinterest also support Schema.org meta tags but Open Graph is fine.

Following tips will help you for integrating social meta tags into popular CMS systems like WordPress, Tumblr and Blogger.

WordPress site, self-hosted or third-party hosted

The WordPress publishing platform is one of the most popular and widely used CMS systems in the world. It provides rich plugin support for additional functionality, including various plugins for social media.

Popular plugins in particular like Jetpack and WordPress SEO by Yoast make it easy to integrate your WordPress site with social meta tags.

Install WordPress SEO by Yoast, this plugin made everything easier:

Installing WordPress SEO by Yoast
  1. Go to the left navigation and click on SEO and then Social under that.
  2. In the Facebook tab, check the checkbox “Add Open Graph meta data.”
  3. Select Save Changes.
  4. Now move on to the Twitter tab and check the checkbox “Add Twitter card meta data” and save changes.
  5. Similarly add meta data for other social media.

WordPress site, hosted on WordPress.com

Automattic/WordPress supports hosting of WordPress sites on their WordPress.com domain, with over 72M sites and counting.

By default, WordPress-hosted blogs are enabled with social meta tags. WordPress automatically scans the contents of your post and determines the best meta data. Additionally, WordPress allows for easy-posting of your blog entries directly to social media via the “New Post” interface.

Tumblr

Tumblr has quickly become one of the most popular blogging platforms for content and photos, with nearly 145M sites and counting.

By default, Tumblr has social meta tags enabled, and “smart suggests” the meta data based on your post type. However, if you want to further customize the social meta tags, you can follow following process.

First add following code in the <head> tag:

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">

And place the following code before </head> section:

<!-- BEGIN TUMBLR FACEBOOK OPENGRAPH TAGS -->
        
<meta name="text:Facebook ID" content="YOUR_FB_ID_HERE">
{block:IfFacebookID}
<meta property="fb:admins" content="{text:Facebook ID}">
        
    <meta property="og:site_name" content="{Title}"/>

{block:PermalinkPage}

    <meta property="og:url" content="{Permalink}"/>
    <meta property="og:type" content="article"/>

        {block:Posts}
            {block:Text}
                {block:Title}<meta property="og:title" content="{PlaintextTitle}"/>{/block:Title}
                <meta property="og:description" content="{PlaintextBody}"/>
            {/block:Text}

            {block:Photo}
                <meta property="og:image" content="{PhotoURL-500}"/>
                {block:Caption}<meta property="og:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Photo}

            {block:Photoset}
                {block:Photos}
                <meta property="og:image" content="{PhotoURL-500}"/>
                {/block:Photos}
                {block:Caption}<meta property="og:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Photoset}

            {block:Quote}
                <meta property="og:title" content="{PlaintextQuote}"/>
                <meta property="og:description" content="{PlaintextSource}"/>
                <meta property="og:image" content="{PortraitURL-64}"/>
            {/block:Quote}

            {block:Link}
                <meta property="og:title" content="{PlaintextName}"/>
                <meta property="og:description" content="{PlaintextDescription}"/>
                <meta property="og:image" content="{PortraitURL-64}"/>
            {/block:Link}

            {block:Chat}
                <meta property="og:title" content="{PlaintextTitle}"/>
                <meta property="og:description" content="{block:Lines}{block:Label}{Label}: {/block:Label}{Line} • {/block:Lines}"/>
                <meta property="og:image" content="{PortraitURL-64}"/>
            {/block:Chat}

            {block:Audio}
                <meta property="og:title" content="{block:Artist}{Artist} - {/block:Artist}{block:TrackName}{TrackName}{/block:TrackName}"/>
                <meta property="og:description" content="{PlaintextCaption}"/>
                {block:AlbumArt}<meta property="og:image" content="{AlbumArtURL}"/>{/block:AlbumArt}
            {/block:Audio}

            {block:Video}
                {block:Caption}<meta property="og:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Video}

            {block:Answer}
                <meta property="og:title" content="{PlaintextQuestion}"/>
                <meta property="og:description" content="{PlaintextAnswer}"/>
                <meta property="og:image" content="{PortraitURL-64}"/>
            {/block:Answer}

        {/block:Posts}

{/block:PermalinkPage}

{block:IndexPage}
        <meta property="og:title" content="{Title}"/>
        <meta property="og:type" content="blog"/>
        <meta property="og:description" content="{MetaDescription}"/>
        <meta property="og:image" content="{PortraitURL-64}"/>
{/block:IndexPage}
        <!-- END TUMBLR FACEBOOK OPENGRAPH TAGS -->

For Twitter card property also place the following code before </head> section:

<!-- BEGIN TWITTER TAGS -->
        {block:PermalinkPage}

<meta name="twitter:url" content="{Permalink}"/>
<meta name="twitter:site" content="@YOUR_BLOG_TWITTER_USERNAME_HERE">
<meta name="twitter:creator" content="@YOUR_TWITTER_USERNAME_HERE">

        {block:Posts}
            {block:Text}
                <meta name="twitter:card" content="summary">
                {block:Title}<meta name="twitter:title" content="{PlaintextTitle}"/>{/block:Title}
                <meta name="twitter:description" content="{PlaintextBody}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Text}

            {block:Photo}
                <meta name="twitter:card" content="photo">
                <meta name="twitter:image" content="{PhotoURL-500}"/>
                {block:Caption}<meta name="twitter:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Photo}

            {block:Photoset}
                <meta name="twitter:card" content="photo">
                {block:Photos}<meta name="twitter:image" content="{PhotoURL-500}"/>{/block:Photos}
                {block:Caption}<meta name="twitter:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Photoset}

            {block:Quote}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextQuote}"/>
                <meta name="twitter:description" content="{PlaintextSource}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Quote}

            {block:Link}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextName}"/>
                <meta name="twitter:description" content="{PlaintextDescription}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Link}

            {block:Chat}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextTitle}"/>
                <meta name="twitter:description" content="{block:Lines}{block:Label}{Label}: {/block:Label}{Line} • {/block:Lines}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Chat}

            {block:Audio}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{block:Artist}{Artist} - {/block:Artist}{block:TrackName}{TrackName}{/block:TrackName}"/>
                <meta name="twitter:description" content="{PlaintextCaption}"/>
                {block:AlbumArt}<meta name="twitter:image" content="{AlbumArtURL}"/>{/block:AlbumArt}
            {/block:Audio}

            {block:Video}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextTitle}"/>
                {block:Caption}<meta name="twitter:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Video}

            {block:Answer}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextQuestion}"/>
                <meta name="twitter:description" content="{PlaintextAnswer}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Answer}

        {/block:Posts}

{/block:PermalinkPage}
        <!-- END TWITTER TAGS -->

Blogger

Google’s Blogger is a great platform for publishing rich content. To add some social meta tags follow the following process.

First add xmlns:og='http://ogp.me/ns#' in the <HTML> tag. Note that there may already exist some code.

<HTML xmlns:og='http://ogp.me/ns#'>

And place the following code before </head> section:

<!-- Open Graph metatags -->
<b:if cond='data:blog.pageType == "item"'>
<meta content='article' property='og:type'/>
<meta content='YOUR_NAME_HERE' name='author' property='article:author'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta expr:content='data:blog.pageName' name='title' property='og:title'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>

 <b:if cond='data:blog.postImageUrl'>
     <meta expr:content='data:blog.postImageUrl' property='og:image'/>
     <b:else/>
     <meta content='YOUR_LOGO_URL_HERE' property='og:image'/>
 </b:if>
 <b:if cond='data:blog.metaDescription'>
     <meta expr:content='data:blog.metaDescription' name='description' property='og:description'/>
     <b:else/>
     <meta expr:content='data:blog.pageTitle' name='description' property='og:description'/>
 </b:if> 

<b:else/>
<meta content='blog' property='og:type'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta expr:content='data:blog.canonicalHomepageUrl' property='og:url'/>
<meta content='YOUR_LOGO_URL_HERE' property='og:image'/>

 <b:if cond='data:blog.metaDescription'>
  <meta content='data:blog.metaDescription' name='description' property='og:description'/>
  <meta content='YOUR_BLOG_KERYWORDS_HERE' name='keywords'/>
 </b:if>
 </b:if>

<!-- You can replace following locale “British English” (en_GB) or Nepali (ne_NP) alternative with your own --> 
<meta content='en_US' property='og:locale'/>
<meta content='en_GB' property='og:locale:alternate'/>
<meta content='ne_NP' property='og:locale:alternate'/>
<!-- /Open Graph metatags -->

For Twitter card property also place the following before </head> section:

<!-- Twitter card metatags -->
 <meta content='@YOUR_BLOG_TWITTER_USERNAME_HERE' name='twitter:site'/>

 <b:if cond='data:blog.pageType == "item"'>
 <meta content='@YOUR_TWITTER_USERNAME_HERE' name='twitter:creator'/>
 <meta expr:content='data:blog.pageName' name='twitter:title'/>
 <meta expr:content='data:blog.canonicalUrl' name='twitter:url'/>
  <b:if cond='data:blog.postImageUrl'>
   <meta content='summary_large_image' name='twitter:card'/>
      <meta expr:content='data:blog.postImageUrl' name='twitter:image:src'/>
   <meta content='560' name='twitter:image:width'/>
   <meta content='750' name='twitter:image:height'/>
      <b:else/>
   <meta content='summary' name='twitter:card'/>
      <meta content='YOUR_LOGO_URL_HERE' name='twitter:image'/>
  </b:if>
  <b:if cond='data:blog.metaDescription'>
      <meta expr:content='data:blog.metaDescription' name='twitter:description'/>
      <b:else/>
      <meta expr:content='data:blog.pageTitle' name='twitter:description'/>
  </b:if> 

 <b:else/>
 <meta content='summary' name='twitter:card'/>
 <meta expr:content='data:blog.title' name='twitter:title'/>
 <meta expr:content='data:blog.canonicalHomepageUrl' name='twitter:url'/>
 <meta content='YOUR_LOGO_URL_HERE' name='twitter:image'/>
 <meta expr:content='data:blog.metaDescription' name='twitter:description'/>
 </b:if>

For Google+ and Facebook authorship include the following code before </head> section:

<!-- Facebook admins and app ID -->
<meta content='YOUR_FB_ID_HERE' property='fb:admins'/>
<meta content='YOUR_FB_APP_ID_HERE' property='fb:app_id'/>

<!-- Google authorship and publisher markup -->
<link href='https://plus.google.com/YOUR_PAGE_ID_HERE/posts' rel='author'/>
<link href='https://plus.google.com/YOUR_PAGE_ID_HERE' rel='publisher'/>

Validating

Be sure to check one of your example posts via the different social media metadata validator.

Wednesday, May 21, 2014

Detailed Study on Semantic Markup or Structured Data [INFOGRAPHIC]

In the SEO world, semantic markup is often referred to as Schema markup, or structured data markup.

You may be surprised to learn it’s not new either, but with the Hummingbird update it’s more worthy of your attention than ever. Semantic markup helps you organize data on your site in a way that allows it to be easily understood by search engines. It was launched in 2011 as a joint effort by Google, Bing and Yahoo to develop a universal set of structured data.

Semantic markup will improve search traffic by drastically improving the user experience of your website. You have probably seen semantic markup in action without even knowing it, and chances are you click on the search results with structured data more often than not.

Here is an infographic from Nine Hertz team, you will come to know that Semantic Markup is worth to your website.

Detailed Study on Semantic Markup

Saturday, April 12, 2014

How to Optimize Twitter SEO for Your Business

How to Optimize Twitter SEO for Your Business

It is undeniable that Twitter is one of popular social media websites. It offers fast information through 140 characters. Many companies start to pay attention to the use of Twitter for their business. They even create account for their company and share information about the company itself, the products, services and other related stuff.

You can use Twitter to promote your business. It allows you to post something short but has sharp information to keep in touch with your customer or gain new potential customers. Twitter is perfect place to keep your business heard by massive users on it. Even if you are new or a seasoned pro to Twitter, here we have simple ways to optimize your company’s Twitter profile through some simple SEO campaign. Fancy to know?  Here is how to optimize your Twitter and get better rank in Google’s eyes as well as promote your business.

Your account name and user name should reflect your business

One of the first things you will have to do when signing up for a Twitter account is to choose your account name and user name. While your account name will show up in your URL, your user name can be seen on your Twitter profile page. Even from here, you will have to consider how your choices will affect your SEO efforts. Choose an account name and user name that are relevant to your business. If you have a brand name, it is best to use that. Although your account name and user name do not necessarily have to be the same, it will be good if you can use the same name for both.

Optimize your bio

The Bio part in your Twitter page is where you will put the description or details about your business. Basically, it is your ‘about us’ page in Twitter. Unfortunately, you are limited to using only 160 characters so make sure that you use relevant keywords especially since this portion is indexed.

Write only quality Tweets

With limited characters available to you per tweet, it is important to consider what kind information you want to share, include all the details. Keep your tweet short and contain sharp information about your business, products or even just share piece of information that relate to your business. This action will give something valuable to your followers and customers. Keep in mind that quantity of tweets is not important as share a quality tweet.

Tweets are a form of linking, and linking can still affect your SEO campaign. While your account might be new and you manage to get a link from a site that has authority on Google, this will start to see an increase in your Twitter Profile’s popularity. If more people start to re-tweet your updates, this will help your site be seen as an authority on a topic, and help to build authority around your site and potentially increase its rankings in Google’s eyes.

Updated your Twitter account frequently

People like something fresh and new on a website. If your company account barely updates the status, potential customers will assume that you are out of business now or you stop the production and they will stop following and even unfollow your Twitter account. To avoid this situation, make sure you update your account frequently; with interesting information to make sure they keep visiting your account because they are curious about what information will you share next through the account.

Re-tweet someone else’s tweet

You can always find a certain information that relate to your business, maybe article from popular newspaper, quote from popular businessman or just tweets relate to your business written by other Twitter users. You can simply re-tweet it again as the opportunity to gain better ranking when it comes to Google search as well as build brand awareness. When your followers have interaction to your account do not forget to reply it and create warm interaction with them. This will keep the intention to your business and company well-maintained and of course attract the customers as well as new potential customers.

Market your Twitter page

This means promoting your Twitter page to other Twitter users. At the start, a lot of users will not have any idea that your Twitter account exists so promote it by putting up a Twitter button on your website if you have one, asking your customers to follow you, informing your customers through email, asking your followers in your other social media networks to follow you on Twitter as well.

Give the Twitterverse New Content

Just because you are on Twitter and you have a website does not mean you are guaranteed better search engine placement. Your best bet is to update your website frequently and tell Twitter about it. Every time you add a page or write a blog entry, be sure to tweet the URL of the new content. Tweeting the URL of your new content will help drive new traffic to your website, increase exposure, build a better online presence, and encourage search engines to crawl your site. If the content is really good, you may even get a few powerful retweets! In other words, Twitter can help spread the word of any website updates much quicker and to a much larger audience.

Monday, March 31, 2014

An Infographic on “SEO Today – A Brief Overview”

“An average of 92% of internet uses use search engines to find their goods and services online.”

Search Engine Optimization (SEO) continues to present rich opportunities to reach people at the very moment they’re seeking. But the fight to stay relevant and well-placed within the search engines such as Google is becoming more challenging as the engines evolve and socialize the search experience through data integration with networks like Facebook, Twitter and now Google. SEO strategies and practices has changed a lot over the last few years.

Here is an infographic from IDF Marketing team of Ireland’s an SEO Company that eat, live and breath search. Search is at the core of who they are as a Digital Marketing agency – it’s where they began, and where they continue to lead and evolve their practice as the Search industry shifts.

An Infographic on “SEO Today – A Brief Overview”

Embed This Infographic On Your Site (copy code below):

Sunday, March 9, 2014

How To Appear On The First Page Of Google Search Results

How To Appear On The First Page Of Google Search Results

The marketing question most small business owners ask is; How can I get my site to appear on the first page of Google results? This guide is designed for people who want to understand the basics of SEO (Search Engine Optimization) and what they should be doing to their site to improve search results.

Once you create a website for your business, you quickly figure out that people are not flocking to it. When you assess the different ways of driving traffic, your options include advertising your website address, promoting your website address through Public Relations and gaining media coverage, encouraging other sites to link to you and getting placed in online directories.

However, these marketing activities will deliver small and sporadic volumes of traffic. The single biggest thing you can do to drive traffic is search engine marketing. Here is why: it is estimated that 80% of traffic to most websites comes from search engines. There are roughly 500 million searches performed everyday and 88% of that traffic comes from the top 4–5 search engines, Google, Yahoo, Ask and MSN. Of these, Google is by far the largest. Approximately 90% of people searching do not go past the third page of results and few go beyond the first page.

Therefore, if you want to drive traffic to your site it is imperative that you get onto the first three pages of Google and the other top search engines. Surprisingly, the majority of small businesses have not figured this out yet and for those who have, the majority are asking the question, How can I get my site to appear on the first page of Google search results?

Different Options

There are two main methods of appearing on the first page of search results.

Paid for results or Pay Per click (PPC)
This is where you pay to appear in the sponsored links section of the results page. In Google, this is at the top of the page and the right hand side. You decide which search keywords e.g. London restaurant, you would like to appear in. You appear in the search results and you pay for every user who clicks through to your site. The cost will vary by keyword and can range from 10p to several pounds or dollars per click, depending on how many other companies are bidding for that keyword.

Natural results achieved through SEO
Natural results are when you appear in the main list of results. You do not pay to appear or when a user clicks on your link. However, to appear on the first three pages of results, you need to implement a number of design and content changes to your website, which are termed Search Engine Optimisation or SEO.

Which is best?
Both have their merits, but natural results are by far the most preferable because once you have invested in SEO, you do not have to pay for the traffic that is generated.

PPC is a great solution if you:
Have just launched your website and you need immediate presence on the first page of result or if you have not yet successfully optimised your site to appear on the first page. Remember, there are thousands of websites all looking to appear on the first page of search results for certain keywords.

Spiders and Links: The Basics of How Search Engines Work

Without getting bogged down in the technical details of how search engines work, here are a few basics that you should be aware of.

Search engines want to ensure that the most relevant sites are displayed to customers who are searching for keywords e.g. London restaurants.

Each page is ranked by the search engine on different criteria.

Each search engine uses different criteria when calculating the ranking of the site, but there are some commonalities such as:
Automated Spiders are sent by the search engine to index each page on your site. These spiders log the content of your site. This allows the search engine to know whether the key words that a user is searching for appear within your site and on specific web pages. However, in addition, the search engines have decided that it is not sufficient to simply have the keywords appear in the site. They believe that the most useful and relevant sites for the person who is searching are those which have a lot of other relevant sites linking to it.

The important points you should take out are:

  • You want to make it as easy as possible for the spiders to visit and index your site.
  • You need to have relevant keywords on your site that are easily found by the spiders.
  • You need to have many other sites linking to your site.

Four Components of SEO

In order to optimise your website to appear in natural search results, there are four components that you will need to address.

1. Design: What to do when designing your website

Many small businesses make the mistake of designing their website and then start thinking about driving traffic to it. The problem is that the way you design your site can result in your site being ignored by the search engine spiders, which means you will receive very little traffic. When designing your site, ensure you avoid the following pitfalls and ask your marketing agency to confirm that they have been avoided.

Avoid flash sites
Sites are designed in HTML or flash codes. The spiders that are sent to your site by the search engines cannot read flash.

No frames
Some agencies design sites within frames. For example, the menu on the left might be within a frame and the main body of the page within another frame. It makes designing the site easier as the only thing that changes from page to page is the content within the frame. However, spiders cannot read what is inside a frame so you will not get indexed and noticed by search engines.

No dynamic pages
Some sites are developed with a database which generates dynamic pages. You can tell if there are dynamic pages on your site if there is a ? within the page URL. Again, most but not all of the search engines can read dynamic pages.

Text within graphics
To ensure text is read uniformly by different browsers, design agencies often put text within a graphic. It looks great, however, a spider cannot read what text is in a graphic and simply moves on.

Keywords
At design stage, think about the keywords you want to be found by on search engines and incorporate that into your design. For example, if you were to design your site so that a page was allocated to the most popular keywords, it would be easier to include more keywords on the page which would be found by the spiders.

2. Content: What to do when developing your content

Keywords

Choosing the keywords that you want to appear in search results for is one of the most important things you can do. Think of it as planning the location for a physical shop. Choosing keywords that people search for a lot (i.e. generates a lot of potential traffic) and then ensuring that those keyword are peppered around your site (i.e. more chance that the spiders will index them giving you a good chance of appearing high in search results) could result in your being positioned on Oxford street as opposed to a back alley.

Invest time in choosing the keywords. Think about how you would search for your product or service. If you are running a restaurant, you should immediately think beyond the generic search keyword of restaurant and consider descriptive keywords such as seafood restaurant or family restaurant. You also need to think of target keywords, so consider London restaurant or London seafood restaurant.

Once you have decided on your keywords, you need to place them throughout your site. The main areas are:

Web page title
This is what you see written in the title bar of the browser. It is also what you see when you bookmark a page. This should explain what the purpose of your site or your page is and include keywords, but always in such a way that makes sense to a user who reads it.

Meta tags
The tags are not visible to users but they explain what the content of the page is. Keywords should be placed in here as they are easily searchable by spiders.

Homepage content
Your homepage is searched by the spiders and you should ensure that your keywords appear near the top header. They should also be sprinkled throughout the homepage. See keyword density for guidance on this.

Keyword density
A question often asked is how many times your keywords should appear on a page. The guidance for SEO is that each page should have a minimum of 250 words; your keywords should account for 2 – 8% of the word on the page. That means they should appear between 4 and 16 times.

Two important points to bear in mind are:

  1. You need to balance the need to write your copy for your users, in order to sell your product, and the need to write your copy for search engines, in order to be found.
  2. To help you achieve both objectives you should focus on a couple of keywords for each page rather than a large number.

3. Links

Inbound links are key
To combat a lot of sites achieving high page ranking by simply stuffing their sites with keywords, the search engines have placed a higher weighting on the value of the number of sites which link into a site. The rationale is that if a site is linked to by lots of other sites, then it must be offering popular and relevant content.

Therefore, your site might be designed in a way that is easily searchable by spiders and your content might be sprinkled with keywords, but you need to have other sites linking to you in order to achieve success.

Audit your links

Ensure you know how many other websites are linking into your site and set a goal for increasing that figure. You should have at least 100 quality links.

How to get links
There are many creative ways to generate links to your site:

  • Ask friends, customers or suppliers to link to your site.
  • Post comments on forums or discussion groups with a link back to our site.
  • Register your site with sites such as stumbleupon and if users like your site, they will bookmark it, creating a link to your site.
  • Issue an online press release which should result in online media coverage and links back to your site.
  • Register your site with multiple directories.

4. Maintenance:

Once you achieve a high ranking in the search engines, it is important to realise that you need to maintain your ranking. The criteria the search engines use in the algorithms constantly change and what works today may not work next week. Your site will need to be tweaked to bring you back up the rankings

Top Search Engine Ranking Factors for Google [INFOGRAPHIC]

This infographic shows the Top 10 Search Engine Ranking Factors that you need to keep in mind to get better rankings in Google.

Top Search Engine Ranking Factors for Google [INFOGRAPHIC]

Embed This Infographic On Your Site (copy code below):

Saturday, February 22, 2014

The Internet in 2015 (Infographic)

The Internet in 5 years will see the dawn of the Zettabyte Era and an overtaking of Web traffic with video consumption at the helm.

The Internet in 2015 (Infographic)

Embed This Infographic On Your Site (copy code below):

Wednesday, February 5, 2014

Some Simple Tips on How to Optimize Alt Texts

Some Simple Tips on How to Optimize Alt Texts

One area where web designers and search engine optimization (SEO) professionals usually butt heads is over the use of images as text instead of actual plain text, usually done in the navigation or other important elements of a website. This can cripple an SEO implementation by limiting the effectiveness of elements that could have been textually based, as text is much more effective for interlinking. This is just one area where image alt text can be very useful.

Alt text “which are found in the ‘alt’ portion of image tag” allows you to add a short descriptor of the image, whether it’s a photograph, a navigational element or some other useful image or graphic. Alt text allows you to describe to users who hover their mouse over an image what they’re seeing, but for SEO, Services, it also gives the search engine more information than the image’s file name might. Optimizing image alt text is a part of any effective on-site SEO campaign, and in this article, we’ll give you some tips on how to optimize alt texts to make them more useful and effective.

First, if there is text in your image, make sure your alt text matches it precisely. If it’s a one-word image such as menu item, for example, you would include this word in your alt text, as well as possibly a short description of the menu item. This gives the search engine some idea as to what that element is all about.

Secondly, for pictures and other descriptive images, you want at most a sentence describing what users can see in that picture, and again, it has to match what the picture actually is. Google’s crawlers can’t see images, but humans can, and if one of Google’s engineers see that you’re filling your image alt tags with irrelevant information, it could raise red flags.

Finally, not every image has to have an alt text in it. You wouldn’t add alt text to transparent spacer images used to align other elements of a page together, for example, but you would add alt text to all important and relevant images on a page. Alt text doesn’t carry the weight of actual readable text in the eyes of the search engines, but it’s better having it than not.

Image: Untypical Marketing

Friday, January 31, 2014

Understanding Google Average Rankings (Infographic)

The Google Average Position ranking system attempts to offer a solution to the phenomenon of website rankings possibly differing for two people, even if the two people are searching for the same term. In the past, Google didn’t provide this data, forcing us to depend on unreliable scraped rankings. The Google Average Position Ranking takes into account differences in location, type of device, and personalization, giving users a much more accurate picture of search engine ranking than scraped rankings do. Check out the following infographic for more information on Google average rankings.

Google Average Ranking Infographic

Embed This Image On Your Site (copy code below):

Friday, January 17, 2014

10 Amazing Blogging Tips to Drive More Traffic to Your Blog

These 10 things — done daily are proven to increase traffic to your blog. The most important step is offering Value, people are intelligent and deserve to learn and be educated — knowledge is best when shared! Video Blogging is also touched upon here as well as great places to share your blog post once you’ve written it.

10 Amazing Blogging Tips to Drive More Traffic to Your Blog

Here are 10 Blogging Tips to Drive More Traffic to Your Blog

1. VALUE: Blogging is about sharing information and delivering value to those who read it. Speak about topics that you have a high level of knowledge about or something you are very passionate about. Don’t hold back your knowledge, this is your opportunity to share goodness with the world and sharing freely is good for the heart.

2. TITLE: Your title and description let people know that they have found what they are looking for. So for example if you were looking for Blogging Tips to drive more traffic to your blog, you would know by the title and the first few lines of this blog that you were in the right place! Feel free to be creative in your titles, they are what catch the reader to your blog.

NOTE: Remember you only have about 5 seconds before someone hits the Back Button, so make those seconds count.

3. HEADER & STRUCTURE: Your header or H1 tag are incredibly important as they represent the title within your blog — you can have a long header describing your title a bit more and remember this is used by search engines and displayed within the search. You only need 1 H1 sentence however it’s good to have a few H2 & even H3 Headers in your blog depending on how long it is and what information you need to stand out. These headers act as guidelines on how to read and interpret your information. Try and avoid a big long typed page that truly only looks good when your publishing a printed book — on the internet, you can be so much more creative in how you display information to capture attention, direct attention and create a sense of intelligence and ease. Play with Lists and Images to create a style that is comfortable to read.

4. LENGTH: Try and keep your blogs to about 500–700 Words — use lots of spaces and really maximize on your lists. It’s very difficult to be captivated by a whole page of letters with no creative display of material.

5. KEYWORD TOOL: Using tools like Keyword Tool in Google will help you understand what people are searching for and therefore you can customize your title and material using this knowledge. If no one is searching for Blogging Tips that it might be a good idea to pick a different topic or title. Here is an image of the Keyword Tool when Blogging Tips was used. As you can see 18,100 people globally typed those exact words into the Google Search Engine and 6,600 in the US alone. You will also notice that the words ‘tips on blogging’ was searched for the same amount of time.

6. TAGS: Tags provide a useful way for you to tell readers quickly what your post is about. These amazing little words also help the search engines to do the same. Remember the main job of search engines is to be smart and return relevant websites to you based on what you search. So your a team and these little tags help you tell the engines what words should be associated with your blog.

7. VIDEO: Add video to your blogs for many reasons — YouTube is one of the most popular search engines today, video allows people to connect with you and understand your message better and video also broadens your market reach. All you need is a simple video camera, iPhone or Webcam to get started and your good to go. To start with you’ll want to keep your videos to the 7–9 minute range.

Blogging Tip – Video: When making video’s keep in mind the following things: Captivate, Educate and Direct.

8. IMAGES: Include images because they are powerful and they really help you break up your information into bite sit bits :-) Images help you articulate your message in a way that words cannot...

A Picture is Worth a Thousand Words

9. CALL TO ACTION: When writing a blog to educate people on the product you have that could teach them all these 10 steps in an easy learning module that has proven to make people money - you need to tell them what the next steps are. So in this case, you are looking for blogging tips for whatever reason however if you are looking for blogging tips because you are looking for ways to drive more traffic to your site, to be more compelling in your writing or to improve your SEO than your next step is to check out the links at the bottom of the hub!

10. TELL PEOPLE: It is great to write a blog however you need to tell people that you have just posted one. If you have many subscribers and regular audience than that’s great however if you don’t you need to use a few strategies to get your message out there. Here are a few to get you started.

  • Facebook - create a Facebook PAGE and invite all your friends to LIKE your page - every time you post a blog, put it on your Facebook PAGE
  • Twitter - This is a great tool as well; however much smaller than your blog or Facebook, write a creative sentence that summarizes your blog and Tweet it with a link
  • Submit your blog post as a article to Ezine Articles
  • Forum Post: search around for forum’s on the topic of your blog post and post a piece of your blog with a link.
  • Document Sharing – convert your blog post into a PDF using zinepal.com and upload it to any of the following document sharing websites: docstoc.com / box.net / slideshare.net

About the Author
Isaiaha Sousa is an artist who loves the internet. Using these amazing tools from Empower Network I’ve learnt how to make a living online! Join me and get ready to have the best life you can imagine.

Sunday, October 20, 2013

9 Google Search Tricks

9 Google Search Tricks

Use these cool shortcuts to find things better and faster

Not many users know the little tricks that can be used to get more out of a simple Google search. Following are the top nine Google search tricks:

1. Use the ‘site:’ operator to limit searches to a particular site. It is particularly handy because many sites’ built-in search tools do not return the results users are looking for, and some sites do not even have a search feature. If you are looking for Google related posts from UltraSpectra blog, for example, try this search: Google site:ultraspectra.com.

2. Search within numerical ranges using the ‘..’ operator. Say, for example, you want to look for information about Nepali blogs and their progress 2009 till 2010, you could use this search: ‘Nepali Blogs’ 2009..2010.

3. Use Google to crunch numbers by using its built-in-calculator — try entering a calculation like 110*(654/8+3). Yes, your computer also has a calculator, but if you spend most of your day inside a browser, typing your calculation into the browser’s search box is quicker than firing up your calculator app.

4. Get quick currency conversions through Google, simply by typing in the two currencies. For example: Type 5,000 Pakistani rupees in dollars to get the result. However, it only has the more mainstream currencies.

5. Use Google as a spelling aid. Entering a word into Google is a quick way to see if you have the right spelling. If it is incorrect, Google will suggest the correct spelling instead. Additionally, if you want to get a word’s definition, use the ‘define:’ operator to return definitions from various dictionaries (for example, define: blogging).

6. Use the ‘or’ operator. This can be useful when you are researching a topic but are unsure which keywords will return the information you need. It can be particularly handy in conjunction with the ‘site:’ operator. For example, Google Or ‘Google X’ site:ultraspectra.com.

7. Find out what time it is anywhere in the world. This one is really handy if you want to make sure that you are not phoning someone in the middle of the night. Just search for ‘time’ and then the name of the city. For example, try: time Islamabad.

8. Exclude specific terms with the ‘-’operator. You can narrow your searches using this operator. For example, if you are looking for information about UltraSpectra but do not want any discussion related to Google, you could try: ‘ultraspectra.com’ – google.

9. Search for specific document types. Google can search the web for specific types of files using the ‘filetype:’ operator. If you are looking for PPT files about blogging, for example, you could try: ‘blogging’ filetype:ppt.

Some Interesting Google Tricks