----------------------------- ----------------------------- MY SEO COLLECTION: January 2017

What is AMP(Accelerated Mobile Pages)

Image result for Accelerated Mobile Pages Project

AMP is a way to build web pages for static content that render fast. AMP in action consists of three different parts:

AMP HTML is HTML with some restrictions for reliable performance and some extensions for building rich content beyond basic HTML. The AMP JS library ensures the fast rendering of AMP HTML pages. The Google AMP Cache can be used to serve cached AMP HTML pages.

AMP HTML


<html ⚡>
 <head>
   <meta charset="utf-8">
   <link rel="canonical" href="hello-world.html">
   <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
   <style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
   <script async src="https://cdn.ampproject.org/v0.js"></script>
 </head>
 <body>Hello World!</body>
</html>
Though most tags in an AMP HTML page are regular HTML tags, some HTML tags are replaced with AMP-specific tags (see also HTML Tags in the AMP spec). These custom elements, called AMP HTML components, make common patterns easy to implement in a performant way.

AMP JS


The AMP JS library implements all of AMP's best performance practices, manages resource loading and gives you the custom tags mentioned above, all to ensure a fast rendering of your page.
Among the biggest optimizations is the fact that it makes everything that comes from external resources asynchronous, so nothing in the page can block anything from rendering.
Other performance techniques include the sandboxing of all iframes, the pre-calculation of the layout of every element on page before resources are loaded and the disabling of slow CSS selectors.
To learn more about not just the optimizations but the limitations, read the AMP HTML specification.

Google AMP Cache


The Google AMP Cache is a proxy-based content delivery network for delivering all valid AMP documents. It fetches AMP HTML pages, caches them, and improves page performance automatically. When using the Google AMP Cache, the document, all JS files and all images load from the same origin that is using HTTP 2.0 for maximum efficiency.
The cache also comes with a built-in validation system which confirms that the page is guaranteed to work, and that it doesn't depend on external resources. The validation system runs a series of assertions confirming the page’s markup meets the AMP HTML specification.
Another version of the validator comes bundled with every AMP page. This version can log validation errors directly to the browser’s console when the page is rendered, allowing you to see how complex changes in your code might impact performance and user experience.
Click Away
Block Ads
Descrese Bouce Rate (40 % after 3 Seconds)
Native Apps

How AMP Works


The following optimizations combined are the reason AMP pages are so fast they appear to load instantly:
If you'd rather listen than read, the following video by AMP engineering lead Malte Ubl gives a similar overview than the following paragraphs.

  • Allow only asynchronous scripts
  • Size all resources statically
  • Don’t let extension mechanisms block renderingKeep all third-party JavaScript out of the critical path
  • All CSS must be inline and size-bound
  • Font triggering must be efficient
  • Minimize style recalculations
  • Only run GPU-accelerated animations
  • Prioritize resource loading
  • Load pages in an instant
  • Help make AMP faster
AMP Design Principles

These design principles are meant to guide the ongoing design and development of AMP. They should help us make internally consistent decisions.
 


  • Don’t design for a hypothetical faster future browser.
  • Don’t break the web.
  • Solve problems on the right layer.
  • Only do things if they can be made fast.
  • Prioritise things that improve the user experience – but compromise when needed.
  • No whitelists.

AMP HTML Specification


AMP HTML is a subset of HTML for authoring content pages such as news articles in a way that guarantees certain baseline performance characteristics.
Being a subset of HTML, it puts some restrictions on the full set of tags and functionality available through HTML but it does not require the development of new rendering engines: existing user agents can render AMP HTML just like all other HTML.
 <!doctype html>
<html ⚡>
  <head>
    <meta charset="utf-8">
    <title>Sample document</title>
    <link rel="canonical" href="./regular-html-version.html">
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
    <style amp-custom>
      h1 {color: red}
    </style>
    <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "NewsArticle",
      "headline": "Article headline",
      "image": [
        "thumbnail1.jpg"
      ],
      "datePublished": "2015-02-05T08:00:00+08:00"
    }
    </script>
    <script async custom-element="amp-carousel" src="https://cdn.ampproject.org/v0/amp-carousel-0.1.js"></script>
    <style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
    <script async src="https://cdn.ampproject.org/v0.js"></script>
  </head>
  <body>
    <h1>Sample document</h1>
    <p>
      Some text
      <amp-img src=sample.jpg width=300 height=300></amp-img>
    </p>
    <amp-ad width=300 height=250
        type="a9"
        data-aax_size="300x250"
        data-aax_pubname="test123"
        data-aax_src="302">
    </amp-ad>
  </body>
</html>
Required markup

AMP HTML documents MUST

  • start with the doctype <!doctype html>. 🔗
  • contain a top-level <html ⚡> tag (<html amp> is accepted as well). 🔗
  • contain <head> and <body> tags (They are optional in HTML). 🔗
  • contain a <link rel="canonical" href="$SOME_URL" /> tag inside their head that points to the regular HTML version of the AMP HTML document or to itself if no such HTML version exists. 🔗
  • contain a <meta charset="utf-8"> tag as the first child of their head tag. 🔗
  • contain a <meta name="viewport" content="width=device-width,minimum-scale=1"> tag inside their head tag. It's also recommended to include initial-scale=1 (1). 🔗
  • contain a <script async src="https://cdn.ampproject.org/v0.js"></script> tag inside their head tag. 🔗
  • contain the AMP boilerplate code (head > style[amp-boilerplate] and noscript > style[amp-boilerplate]) in their head tag. 🔗
  • (1) width=device-width,minimum-scale=1 is required to ensure GPU rasterization is enabled.
Resource-  www.ampproject.org

Ways to Completely Ruin Your Effective Affiliate Marketing

Image result for Affiliate Marketing

Per various email demands, here are the standards that I apply with regards to offshoot promoting on this blog. You may have an alternate way, however this is the thing that works for me. 

1. Member Marketing Starts With the First Impression 

Early introductions are tremendous in light of the fact that they set the tone for a guest's whole affair through your site, including any conceivable exchanges that may occur now, or later on. 

What is the early introduction that you get when you go to a site and it's splattered with ads, for instance? What does a site like that say to a first time guest? 

"Hello there, decent to meet you – click here so I can acquire a buck?" 

It resembles in the event that you met somebody interestingly and the main thing they inquire as to whether you're keen on purchasing something from them. It helps me to remember those folks who offer adornments from inside their trench coats. Possibly you'd purchase a "folex" (fake-rolex) from them once, yet you'd never do any sort of business with that individual past that. 

I'd much rather become more acquainted with some person to start with, trust them, and after that have them let me know what they may bring to the table. Then again even better, be really keen on what they're doing, and get some information about it myself. This is the sort of logic that I utilize while advancing other individuals' items. 

What do you see when you arrive on my landing page? 

2. Just Promote Products That You Have Used. 

As I specified in a past post, the way I acquire cash with partner connects in ALL of my online organizations is by advancing just items that I have utilized, and just what I would prescribe to my companions who need to accomplish comparable outcomes. I feel that anybody with a group of people has a duty to do a similar thing. 

There's something fishy about somebody advancing Apple Computers who just uses a PC. 

3. Continuously Describe The Product That You're Promoting. 

On the off chance that you have an offshoot connection that is only a flag advertisement, or a connection at the base of a post with no genuine portrayal – it's a waste. In case you're effectively advancing an item (that you've utilized), you clearly know something about it. Impart your insight to your group of onlookers, and they'll be interested and more inclined to navigate to take in more. 

4. Content First, Affiliate Link Second. 

In spite of the fact that I just said you ought to dependably depict the items you advance, the substance that you compose ought to drive the member interfaces that you offer, not the a different way. Try not to compose posts only for setting a partner connect inside. 

5. Impart Your Experience To the Product. 

While depicting whatever it is your advancing, share your experience! On the off chance that you can toss in a few information or charts to oblige it, shockingly better. A while ago when I was all the more effectively expounding on eHow, I advanced an eBook that I read which quadrupled my income per article. I made a diagram that indicated the amount I earned before I read the book versus the amount I earned after. To this date, eBook has been a standout amongst the best partner advancements I've done on this blog. 

6. Just Promote One or Two of the Same Type of Products. 

There are various reasons why you ought to never advance more than two of a similar kind of items: 

The more items you advance, the less credible each of them gets to be. In the event that today I suggested Company X, and tomorrow I prescribed Company Y and Company Z, each of their "stock" instantly goes down. 

The more items you advance, the more troublesome the choice to pick between them gets to be. I've been to various individual fund sites that offer join rewards for 4 to 5 unique banks (some of the time inside a similar post!). It harms my mind. 

In the event that you continue advancing similar items over and over, your crowd will start to understand that there must be something extraordinary about the particular ones you keep raising. 

7. Starve the Horses and Feed the Stallions 

This is a favor method for saying that you ought to just advance the items that you know profit, and disregard the ones that don't. You will just know this after experimentation, so observe what works, and dispose of the rest. 

For some time, I had various flag advertisements on this blog were not producing any kind of pay for me. There's no reason for squandering profitable advertisement space with pennants that don't pay out. 

Test, test, test. 

8. Use a Resources or Tools Page 

An asset or instruments page is a page that comprises of supportive connections to sites, items and administrations identified with your specialty. This is an immaculate spot for partner joins, so exploit this on the off chance that you haven't as of now. 

It takes the "books I'm perusing" territory you frequently find in web journals (inside Amazon partner connections) to a radical new level. in addition to the fact that this is incredible for you, however it's to a great degree supportive for your perusers who might search for extra assets identified with your specialty. In addition, they may run over items or administrations they weren't initially searching for while on your assets page.

Read More - www.seoworkinindia.blogspot.com

How To Create Link Baiting Viralness

The term link bait, sometimes written as linkbait, refers to a placement on a website for the strict purpose of tempting other web pages to link to that website. Link baiting is a viral marketing form, and can be extremely powerful, as it draws traffic to a website without keyword searches or specific searches for that web page. Anything can be link bait, as long as it causes links to be built to the web page and draws visitors to the page. Link baiting is also used in search engine optimization, as it is a powerful tool and can help a website that has fewer popular keywords than usual. Linkage with other web pages signifies that the original page is worth reading.

Social Book Marking site - https://bookmark.looglebiz.com/



The most important element of linkbaiting is creating compelling content, something that the reader finds value in. Examples of link bait, in this context, include breaking news, striking images, infographics, controversy, humor, educational material and applications. If your content has value for readers, they are likely to share the link.


There are many different elements on web pages that can be considered link bait, as long as someone links to it. There is no specific definition of what exactly link bait has to be, as long as it is interesting enough to draw visitors and to be linked to other websites. Some of the elements used aslink bait include:

Humor Hooks – Funny stories, practical jokes, pictures, or videos
Informational Hooks – News articles, ezine links, and anything else that carries important information, especially frequently updated information
News Hooks – Like information hooks, news hooks provide current information and can even follow big news stories
Tool Hooks – Useful tools that can be downloaded or used on the web page
Evil Hooks – Mean, inflammatory, or unpopular editorial comments

Both linkbaiting tactics can be used either well or poorly. A well-crafted title grabs the reader's attention and accurately represents the content. However, one common misuse of linkbaiting is the creation of catchy -- but misleading -- titles for articles. Similarly, if you share links to high-quality content, you, your readers, and the content creator all benefit. However, if you frequently share links to content that is not intrinsically valuable, your own content will lose value for both readers and search engines.

Blogs are also frequently link baited, mostly because they can touch on a number of topics and change regularly. Link baiting is a good way to begin a mini marketing campaign without spending much money or time.


Here are linkbaiting tactics that can work very well indeed…

1. Lists
People cannot get enough of the easy-to-digest, does-what-it-says-on-the-tin list format. Lists often fall into one of two camps: educational or amusing. As such they’re perfect linkbait fodder. 

2. Create an infographic
Like lists, the world cannot get enough of infographics. We regularly aggregate infographics into list-based posts… the best of both worlds!

3. Have an argument
Hunt around for a target. Lock on. Attack! Make sure you wear a thick coat.

4. Say something controversial or stupid
We have established a few rules for the Econsultancy blog over the years. One is: “Never link to John Dvorak”. Dvorak is a veteran tech journalist who regularly posts nonsense about SEO, thereby attracting links and scorn from the outraged SEO community. Intentional linkbait or not, it works, as word spreads. We’re now wise to it…

5. Be a contrarian
This isn’t the same thing as having an argument or saying something controversial. It is about taking a position that might be seen as counterintuitive, or against the grain, or plain ridiculous. I rather like people who go against the grain, whether I agree with them or not. Like Perry Farrell says, “ain’t no right, ain’t no wrong”.

6. Build tools
Oh boy, does the world love a useful tool. Keep your eyes on this space folks!

7. Launch a competition
This is one of the oldest tricks in the book. Competitions can create lots of interest, and tons of links. Consider the Best Job In The World competition. It attracted tons of links, a vast amount of earned media (online and offline), 36,000 applicants and an estimated $100m in tourism.

8. Get an exclusive
It goes without saying that being first to a story can drive lots of links. Don’t think of exclusives in purely ‘news’ terms. 

9. Release a whitepaper
Thought leadership works. Informative whitepapers can spread around the network like wildfire, and bloggers will often write about them. 

10. Be helpful 
The Econsultancy business is pretty much entirely based on helping people, via practical and time-saving research, training, events and consulting. Educational blog posts help us raise awareness of what we do more broadly as a business, and they attract lots of links.

11. Amuse and entertain
Creating compelling content that brightens up somebody’s day is always a good idea. 

12. Involve the crowd
Crowdsourcing content automatically provides you with a bunch of people who has some kind of vested interest in your article / research / content. As such they’ll be more likely to make a noise about it, as and when you publish.

13. Say something bad about Apple
Honestly, it never fails. 

14. Write killer headlines
The first step to creating linkbait is thinking about the headline, not least because you want people to use your headline text in order to link to you. If you're doing the linkbait thing properly you should have a Google goal in mind. I’m going after ‘linkbait techniques’ here, as we’re not on the first five pages of Google for that term. Let’s see how I get on!

15. Do something new 
Harder than it sounds, I know. We live in a world of me-too. Being original is more difficult than ever. I mean, there are hundreds of linkbait articles out there already, but I bet none of them have ever signed off with a Link Wray video… 

Sourcewww.seoworkinindia.blogspot.com

Digital Marketing Trendy Blogs/ Websites/ Firm