Wednesday, January 27, 2010

Adding meta tags to blogger

Adding meta tags to blogger(blogspot) blogs,websites-SEO

Sign in to your blogger dashboard>click the 'layout' button

Click on the 'Edit html' tab

Here is the code you have to add
<meta content='DESCRIPTION HERE' name='description'/>
<meta content='KEYWORDS HERE' name='keywords'/>
<meta content='AUTHOR NAME HERE' name='author'/>
DESCRIPTION HERE:Write your blog description
KEYWORDS:Write the keywords of your blog
AUTHOR NAME:Write the author's name(Your name)

3.Add the above code just after this
<b:include data='blog' name='all-head-content'/>

Monday, January 18, 2010

Lorem Ipsum Creator

When laying out Web sites, it is sometimes necessary to fill the areas of the page with some text. This script will do that for you, generating as much or as little text as you need. Simple to use.

Digg Button Creator

Looking for an easy way to add Digg buttons and links to your Web pages? The instructions given on the Digg Web site can be a bit tedious. Use this generator instead, to make it easier. Y


Array Creator

Coding large arrays can be a bit of a repetitive chore. This script will create a generator that will help speed up the process. Easy to use and implement!

* When using the numerical value option enter the array length and an index value.
* A number is then appended to the index value starting at 000.
* A second value can also be added after the number by entering in the second textbox, if this is not required leave the box blank.
* If the numerical value option is not used each individual array index value is typed in the text field, you can then either click the "Manual Enter" button or press the "Return" key to confirm your index value.



Wednesday, January 13, 2010

Make money by displaying CPM ads on your site, forum or blog

CPM stands for "cost per 1000 impressions", this means revenue in your account each time a CPM ad is served to your page (RAW CPM means you're paid on every impression and unique CPM means you're paid on unique IP impressions).
*Even if you don't have a site, you can still earn money with this companies!


HotPTP.com *:
Payment: Easy payments through PayPal,Egold, no minimum.; Egold Instant AutoPay!!!
Banner: 1$ to 10$ CPM*; * US ,Europe CPM
Referral: Earn From 2 Referral Levels: 1 level: 10%, 2 level: 5%

Make money by displaying CPC & CPA ads on your site, forum or blog

CPC stands for "cost per click" this means revenue in your account each time a CPC ad is clicked.
CPA stands for "cost per action" this means revenue in your account each time a CPA ad predefined condition is fullfiled.
 
 Earn money from relevant ads on your website!

Google AdSense matches ads to your site's content, and you earn money whenever your visitors click on them.

AdSense for content automatically crawls the content of your pages and delivers ads (you can choose both text or image ads) that are relevant to your audience and your site content—ads so well-matched, in fact, that your readers will actually find them useful.

AdSense for search allows website publishers to provide Google web and site search to their visitors, and to earn money by displaying Google ads on the search results pages.


Etology
Have a Website? Join Etology and start earning additional revenue! Simply paste our code on your website and we take care of the rest. Sit back - we'll send you the check. Join now!


Make money from your Website or Blog with BidVertiser

Make Money from your Website or Blog Display the BidVertiser text ads on your website or blog, get paid for every click and have the payments sent directly to your PayPal account.


Obeus
Is The Democratic Pay-Per-Click and Pay-Per-Impression Advertising Service. No fictitious prices on advertising; all prices are defined by real demand and supply! Single account for advertiser and publisher - advertise your site and make money on it simultaneously. Affiliate Program - get 40% bonus of any referred publisher earnings and 10% of any referred advertiser spends. FOREVER! Sites Catalogue with review and rating system.

Tuesday, January 12, 2010

Change title tags in Blogger - more search engine traffic

How to change the title:

Go to Layout>edit HTML in your Blogger dashboard.

Search for this tag: <title><data:blog.pageTitle/></title>

Replace this tag with the following code:
<b:if cond='data:blog.pageType == &quot;index&quot;'> <title><data:blog.title/></title> <b:else/> <title><data:blog.pageName/> | <data:blog.title/></title> </b:if>

Save your template and you should see the results in your web browser. It may take a few days for the changes to show up on the google search results.

How to insert HTML or Javascript or PHP code into a Blogger post?

How to insert HTML or Javascript or PHP code into a Blogger post?
  1. Copy the code into your NOTEPAD!
  2. Use Edit->Replace (or Ctrl+H) and in find all the < and replace them with & l t ; (delete the spaces between the characters, without spaces you would just see another < here) 
  3. Use Edit->Replace (or Ctrl+H) and in find all the > and replace them with & g t ; (delete the spaces between the characters, without spaces you would just see another > here)
  4. Copy the code from NOTEPAD into the Blogger post
  5. And you are done
What have you done? The & l t ; is another way of telling the browser to shov a <.

How to remove or hide Blogger navbar

How to remove or hide Blogger navbar

Insert (copy, paste) the following CSS code in your Blogger template to disable the Blogger Navbar:


<style type="text/css">
#b-navbar {
  height:0px;
  visibility:hidden;
  display:none
}
</style>