MayDay Changes of Search Industry Highlights

Google monthly updates for May has been less 39 when compared to the previous month April 50 updates

Well I would always look into the items, which are closely related to one, other like Inorganic Backlinks & Penguin Improvements

Below mentioned snippets shared from Google. 

Better application of inorganic backlinks signals. [Launch codename "improv-fix", project codename "Page Quality"] We have algorithms in place designed to detect a variety of link schemes, a common spam technique. This change ensures we’re using those signals appropriately in the rest of our ranking.

Improvements to Penguin. [Launch codename "twref2", project codename "Page Quality"] This month we rolled out a couple minor tweaks to improve signals and refresh the data used by the penguin algorithm.

The Below mentioned changes are the main things which I preferably feel most importance for Integrated Digital Marketing Person. Here is the list of Google May Updates for 2012 of Search Industry

Read More : The May 2012 Changes of Search Industry Highlights

How to SEO Flash

How to SEO Flash

Flash gets a bad rap, undeserved in my opinion, for harming search engine visibility. Why are search engine optimization (SEO) practitioners concerned about Flash, and how can we SEO Flash content? Flash content is often heavy on images and interactive features, and light on text. As of 2008, the leading search engines are heavily dependant on text to understand the meaning of pages.

The leading web development tool, Adobe Dreamweaver, embeds Flash in web pages with code that fails to provide accessibility for visitors or search spiders who cannot handle Flash. Instead of using the default code, my recommendation is to hand code Flash pages with primary HTML content, and a method of automatically testing for Flash support before attempting to insert the movie. The primary HTML content can be search optimized as if the Flash wasn’t there, while the Flash provides an enhanced user experience for those visitors who have the necessary Flash player.

The April 11, 2006 release of Microsoft’s popular Internet Explorer (IE) browser includes an update (“Eolas”) that prevents ActiveX-based Flash controls from working properly. When the user attempts to interact with the Flash, a tool tip appears, stating, “Click to activate and use this control.” That extra click is an annoyance. In addition to helping search engines, the programming techniques described in this article solve the Flash Eolas problem.

Search Engines and Flash

Search engines have the ability to read Flash files and extract text and links. In particular, Google and Adobe announced a new algorithm for indexing textual Flash content on June 20, 2008. As explained by Rand Fishkin in Flash and SEO – Compelling Reasons Why Search Engines & Flash Still Don’t Mix, and Vanessa Fox in Search-Friendly Flash?, hoping that search engines can decipher you Flash is not a substitute for providing indexable HTML content.

Requirements for Successful Use of Flash

Flash animation is a great way to present complex content because it allows the designer to put more content in a finite space, without wrecking page design. For technology sites, Flash is an ideal way to present a slide show or movie explaining a complex product. At the other end of the spectrum, art and entertainment sites have a real need for multimedia, and Flash is the perfect solution.

When using Flash, we’d like to satisfy each of these objectives:

  • Clean design
  • Search Engine Optimization
  • Accessibility for a wide variety of browsers, including screen readers and mobile phones
  • Code validation and standards compliance
  • Correct functionality with IE

SEO Flash Programming

My recommended Flash SEO method uses a DIV with search-engine-accessible, primary content, and an open source Javascript function called swfobject() to detect when browsers are capable of viewing Flash. When an appropriate version of Flash player is present, the Javascript manipulates the page’s document object model (DOM) to replace the primary content with the Flash movie. Most search engine spiders can’t handle Flash, so they will elect to view the primary content. The primary content may contain links, headings, styled text, images—anything we can add to an ordinary HTML page. With SEO copyediting and coding skills applied to the primary content, Flash becomes a non-issue.

Flash accessibility programming isn’t spamming, as long as the primary content and the visible movie are essentially the same. The World Wide Web Consortium (W3C) Web Accessibility Initiative (WAI) specifically states that multimedia content should have an alternative representation available. Accessibility programming creates the benefit of presenting visual information without losing the visitors and search engines who depend upon textual content.

As of July 2007, I discussed this method with Dan Crow of Google. He warned that this programming method could draw attention because of the possibility for abuse. If you use this method, make sure the alternative content is a faithful representation of the Flash content, and avoid combining this with other coding methods that could be abused. While this SEO method is not abusive, it is aggressive because there is a small risk that the search engines could mistakenly decide that the primary content is a form of cloaking.

SWFObject 2.0

SWFObject 2.0 is an open source project based on Geoff Sterns’ original SWFobject() and UFO (Unobtrusive Flash Objects) by Bobby van der Sluis. As reported at swfobject, Adobe is likely to include swfobject() in future releases of its web development tools.

Scalable Inman Flash Replacement

If you are only using Flash to enhance headings, quotes, or callout text, a method called Scalable Inman Flash Replacement is an excellent choice. SIFR automatically pulls text from an HTML document and modifies the Document Object Model to replace the text with a Flash rendering of the appropriate font. SIFR makes it easy to modify the text, and ensures that your Flash text always matches your HTML text, reducing the risk of abuse.

The drawback of SIFR is that it only handles the presentation of simple text. Complex Flash animations, such as menus, slide shows, and interactive presentations can not be programmed easily with SIFR. For these types of Flash, SWFOBJECT and UFO are more effective.

Example: Making Flash Home Page Spiderable

The sample code below is derived from the home page of TrueVector Technologies which includes two Flash objects. The content of that page can now be indexed because search engines can read the HTML-coded content, while visitors with Javascript and Flash can view enhanced visual content.

<head>
<!--snip-->
<script type="text/javascript" src="/js/swfobject.js">
</script>   
<script type="text/javascript">       
  var flashvars = {};     
  var params = {       
    wmode: "transparent"     
  };     
  var attributes = {}; 

  var flashvars2 = {};     
  var params2 = {       
    wmode: "transparent"     
  };     
  var attributes2 = {};

  swfobject.embedSWF("/flash/map_test.swf",
        "myContent", "760", "350", "9.0.0",
        "/flash/expressInstall.swf",
        flashvars, params, attributes);    

  swfobject.embedSWF("/flash/homepage2.swf",
        "headerbanner2", "760", "220", "9.0.0",
        "/flash/expressInstall.swf",
        flashvars2, params2, attributes2);    </script>

</head>
<body>
<!--snip-->

<!--primary content, for non-Flash visitors-->
<div id="myContent">
  <img src="/images/home-top.jpg" border="0"
    alt="TrueVector Technologies" height="350" width="760">
</div> 

<!--snip-->
<div id="headerbanner2">       
  <h1>TrueVector <em>noun</em></h1>
  <p>1) a tool designed to enhance web site navigation.
    2) by eliminating clumsy dropdown boxes and checklists.
    3) giving users easier access to data or inventory.
    4) leading to an enjoyable surfing experience.
    5) resulting in higher click-through rates and longer
    site visits. 6) which lead to more return visits and
    site referrals. 7) ultimately ending in trueVector's
    customers suffering <strong>higher profits</strong>.</p>
    <p><strong>Syn:</strong>
    Interactive Map/ Flash Map/ Zip Code Map/
    Rate Center Map/ Store Locator Map/ Real Estate Map/
    TrueVector Flash Map/ US Interactive Map</p>            
</div>

Flash accessibility programming will not magically cause a site to rise to the top of the rankings, but this Flash SEO method will eliminate any ranking disadvantages associated with Flash.

We’ve used this Flash SEO method on many high traffic sites. The code has been served hundreds of thousands of times. Sites using this Flash SEO method have achieved top rankings for keywords found only in the Flash content.

All Flash Sites

A site built entirely with Flash suffers a great disadvantage because it lacks page structure to organize the content, internal linking, and unique page titles. One remedy is to create distinct HTML pages to represent each Flash “page,” and install the Flash movie on each and every one of the HTML pages. When a visitor requests the page, they’ll see Flash if they can handle it. Otherwise, a non-Flash visitor, such as a search engine, will be able to spider the site. If a user follows a search result onto one of the inner pages, they’ll get the same Flash experience because the movie is available on every page. Another approach is to divide the Flash into pieces and put the relevant piece on each page.

Slicing up the Flash can result in page transitions that don’t provide the seamless effect that you want to create. To get the best of both worlds, pass a parameter into the Flash movie using FlashVars. The same movie can appear on each HTML page, but depending on the parameter value, the movie can start at an appropriate point to show the Flash content that corresponds to that page. To get rid of all the extra pages, but still be able to reference different parts of the Flash piece, add a # and a tag to the end of each URL, and pass that tag into the Flash. This approach can make the back and forward buttons work properly, and allow people to bookmark specific parts of the Flash site.

It is also possible to use PHP scripts to pull both the primary HTML content, and the Flash content from a MySQL database. This approach would greatly simplify the maintenance of an accessible Flash site by storing only one representation of the content.

Source: Jonathan Hochman

effective Youtube video ad campaign

effective Youtube video ad campaign

Facebook is the go-to social network for social advertisers, and the site has certainly proved it’s value in returning good results and awareness for brands. Youtube is a less obvious choice for many marketers, yet it’s an excellent platform for running social video ads and can prove to be cost-effective while delivering real business results. Many businesses of course, will be put off by Youtube as they may not have the necessary video assets to fully capitalise on this, but Youtube’s promoted video option is something that brands should focus on and you don’t necessarily need to invest in full-scale video production, if you have a clear strategy in place to make the content work for you.

The audience

To provide some context on how Youtube advertising can work, the video below shows the impressive figures behind Youtube homepage takeovers. While this is a much more significant advertising undertaking for brands than a standard promoted video campaign, the figures show how engaged audiences are on Youtube. Google and Compete recently ran a report into the effectiveness of Facebook ads, with some surprising results. Given that the ad report was commissioned by Google, these findings are of course skewed towards the positive, but they are useful nonetheless.

Read More: effective Youtube video ad campaign

VSEO or Video Search Engine Optimization is Revolutionary

SAY HELLO TO VSEO ( Video Search Engine Optimization)

VSEO or Video Search Engine Optimization is revolutionary Turn that can take companies’ video and spread it over the far reaches of the Internet, and then make it easy to find in search engines like Google, Yahoo, Bing and more.

Streaming videos from YouTube, interactive websites like blogs, and more have forced companies to evolve at the speed of light.

Video optimization has emerged as one of the latest SEO techniques which have taken the SEO world with a stride. Earlier this technique was discarded by many SEO’s as they thought it wasn’t too effective and not catchy with the audience. However, they are now proved wrong as the majority of SEO’s use YouTube optimization techniques for getting top ranking.

For that you need to know the answer to the following questions:

Source: Search Marketing Inc Digital Marketing Blog

SEO Friendly Website Tips

SEO Friendly Website Tips

SEO has become a valuable online marketing tool for businesses of all shapes and sizes, but for an SEO campaign to be successful, solid foundations need to be in place. Doing things right from the offset can really reap the benefits, save time and money.

Keyword Research – Start to build, in addition, pages for content that target these specific keywords based on your findings, or at least have a plan of where these pages may go down the line once the site has launched.

SEO Friendly Navigation

Search Engine Friendly Navigation / SEO Friendly Navigation - One of the many factors of on-page SEO is the internal linking structure and the navigational system is the backbone for this. Having buttons and links which are text-based is a major plus and great for accessibility.

Website Loading Speed - Major SEO Factor which was  introduced early. It consists of various elements to be followed… below mentioned are few suggestions

    • CSS files – remove unwanted/unused code.
    • Amount of JavaScript in Code – This will slow depending on what you are using it.
    • File Size - remove unwanted space and unessiential line breaks

Website Images
-
Reduce image file sizes are Adobe Photoshop and Adobe Fireworks or any Image using software. I personally recommend Adobe Fireworks.

If your site is related to eCommerce use smaller images in galleries rather than bigger ones. Remember speed is now a key factor with SEO and can’t be avoided.

Keyword Structure for website – Get Improtant keywords on the page. Below mentioned are suitable places:

  • Meta Data
  • Captions
  • Navigation
  • H1 – H4 Tags
  • Breadcrumbs
  • Attribute Links
  • Internal Links
  • Footer Links
  • URL Structure
  • Folder Names

Social Icons – Social a good way to demonstrate to potential customers that the company has a good social networks. Make the website links contactable on social networks with prominent buttons and icons

Sitemaps - Sitemaps are purely designed to tell the search engines about all of the content on the website.

Major websites without sitemaps  is the lack of pages that are indexed in  Search Engines. Sitemaps can be used in different formats like XML, ROR, HTML & URL LIST

W3C Validation – Always validation of the website is required to make sure that there are no more errors in website.

Below mentioned are few links which are useful to Validate your website.

Checkout our Affordable Services Take your presence in online industry

Trends & Predictions For 2011

Trends &; Predictions For 2011

Digital Marketing Trends

The announcement of the Google AdWords call tracking program validated this prediction, but the word “beta” at the end of the program indicates I was a little premature.

So what should marketers expect to see for 2011?

Rising Costs-Per-Click

Only three things are certain in a search marketer’s life: death, taxes, and rising CPC’s. With ad dollars continuing to migrate from the offline to the online world, costs per click will continue to rise for years to come.

To combat this cost increase, marketers will have to double down on match type and negative keyword management, creative testing and campaign structure optimization to lower costs and increase conversion rates.

Expect tool vendors to respond with increased automation, allowing marketers to succeed with these optimizations at scale. Advertisers will be forced to re-evaluate the right level of automation for their business, and put the necessary controls in place to ensure automation delivers high quality results.

Rise Of Mobile and Social Platforms, Fragmentation, And The New Rules Of Marketing

With an ever-increasing number of mobile and social users, now advertisers must deliver content on more platforms, in more formats and account for more contexts.

Advertisers will need to look past the website towards investments in mobile applications, Facebook pages, twitter feeds and even sites like Groupon or Google Places. Look for advertisers to increasingly convert users off site, whether via mobile, local or social apps. As they do, advertising campaigns will become tailored to the requirements of specific platforms, increasing complexity for the marketer without necessarily increasing revenues. As this shift occurs, early adopters will benefit from building a multichannel customer base at a time when acquisition costs are still relatively low.

Google Gets Social, Facebook Gets Serious

Look for Google to respond by overlaying a sentiment analysis on top of its organic results. This new, more social search algorithm will allow users to rate search results or even websites, and have user “likes” factored into ranking algorithms.

Google is getting more social, Facebook will get more serious. To expand the value of its ad network, Facebook will extend its ads beyond Facebook to participating publisher sites. This new ad network will enable 1:1 targeting based on demographic and placement characteristics, increasing CPMs for publishers and offering the first true challenge to the Google Display Network.

Search Engine Marketing Trends

  1. CPCs Will Continue To Increase By 12-15% per Year
  2. Cross Channel Optimization Will Become More Important Than Ever
  3. Bing Will Continue To Gain Marketshare After A Short-Term Marketshare Loss
  4. Smarter, Bargain-Centric Customer
  5. Mobile Will Finally Take Off. (Several start-ups are working on enabling mobile ecommerce. Google itself announced that it is working on a phone that will replace credit cards.)

CREDIT: SEARCH ENGINE LAND