Real Money On Web

Beginner’s CSS Tutorial

Posted by gemsuraj on September 16, 2007

Cascading Style Sheets (CSS) allows you an efficient way to style up HTML web pages, and this short guide is here to explain how CSS works and the benefits gained from using CSS.

Firstly, the benefits. For many years the de facto method of building web pages was to use tables, with all style instructions written on the page (the dreaded “font” tag springs to mind…). The disadvantage of this was that on large websites, any future changes such as editing the text colour would need to be done on each individual page. This is obviously highly time consuming and hardly cost effective to businesses. CSS allows you to separate the style from the content. This means putting all text styles, positioning and background image instructions into a single separate file and linking to it from each page. Then any future changes need only be done in one place. Other benefits include quicker loading times (due to the smaller individual file sizes) and easier crawl-ability for search engines.

So, how does this CSS thing work then? In its simplest terms, you declare a list of styles to attach to every instance of a particular element in the following format:

<style type=”text/css”>
selector {property: value;}
</style>

Let me break this down – the <style></style> tell the browser to read the code as CSS, the “selector” is the element you want to style up, the “property” is the type of style you want to declare and the “value” is the value assigned to that style. For example, if I wanted to make the text in all “p” tags red, I would use the following CSS declaration:

<style type=”text/css”>
p {color: red;}
</style>

The “;” after the value isn’t strictly necessary in either of these cases, but is necessary when declaring multiple styles within the same curly brackets “{}”.

If you didn’t want all p tags to have red text, you can take this a step further by adding a class to the p tags you want to have a different style and referencing them in the CSS with the “.class” selector:

<p>This text is red.</p>
<p class=”blue”>This text is blue.</p>

<style type=”text/css”>
p{color:red;}
p.blue{color:blue;}
</style>

This will produce the following output:

This text is red.

This text is blue.

I did mention earlier that the CSS is best put into an external file, but all I’ve shown so far is how to write CSS declarations within the HTML page. Let me fix that…

The CSS can go in an external page with a file extension of “.css”. I’ll call mine “stylesheet.css”. Within the <head></head> tags at the top of the HTML page you need to link to this stylesheet like so:

<link rel=”stylesheet” type=”text/css” href=”stylesheet.css” />

There you have it. With a little more research into how to control the various elements and what selectors you can use (W3 Schools is always a good place to start), you should be well on your way to streamlining your web pages!

Posted in Blogger, Blogging, SEO, Tips & Tricks, Wordpress | 2 Comments »

How to increase your Adsense earnings

Posted by gemsuraj on September 16, 2007

I’ve written many blogs now about making money online with little or no effort, recounting tales about how you could earn thousands while you while away your time gardening, watching TV, or cheating at the local pub quiz on your Internet phone (James).

Well now it’s time to go into a little detail, some ‘put up or shut up’ facts to turn your casual hobby into a full-time career. Forget the websites that offer to teach you how to make money with Adsense in exchange for paying them a consultancy fee, or buying their expensive eBooks. They’re idiots, and they’re trying to scam money from you. The real gold is right here… for free.

If you’ve read my previous blogs you’ll know about choosing a niche for your website, filling it with regularly updated unique content and monetising the socks off it – this time we go into detail about how to make that little extra money become a lot, with Google’s very own Adsense.

Step 1 – Ad Types

Choosing your Ad format is the first step to make, as remember Google’s Adsense is mostly an EPC (Earnings per Click) scheme whereby you get money each time someone clicks on the ads rather than when visitors simply view them, or actually buys something at the end of it. Therefore it’s in your best interest to have as many of your visitors as possible click on your adverts.

Obvious that is, easy that is not, hmm?

So what are the best performing ad sizes? According to Google the best performing ones are:

160×600 Skyscraper: Google say that advertisers like these size ads and tend to bid more for them, who are we to argue?

728×90 Leader board: Very popular for site headers, footers and forums

300×250 + 336×280 Rectangles: Another popular size and one Google personally recommends, also used quite extensively for video ads.

Link Units: These are recommended by Google for sites that have limited space, and recommended by me because they can be slipped into a horizontal navigation seamlessly 

Step 2 – Position your Ads

Location, location, location!

Slapping your ads on a page and hoping for success will lead to failure just as sure as eating a curry after 14 pints ‘to settle the stomach’ will lead to vomiting. You need to know where the hotspots are on your website; the locations that users are most likely to click (what is a hotspot not?  …not a good spot! Actually in this instance it’s very good, so read on). Identifying these hotspots is simple, as user trends are fairly constant. Then you place an ad where the user is most likely to go first.

In fact, if you’re unsure about where users are most likely to click on your website, Google Analytics even shows you an overlay of your website marked out where your visitors click – if you have it installed; if you don’t, why not?

So where are visitors most likely to go? Why, the navigation links of course! They can usually be found vertically on the left of the page and horizontally at the top of the page. When visitors naturally head for these hot-spots they’ll be finding your ads instead of site navigation, earning you money.

If you’re thinking any of this might be a little underhand, or against Google’s TOS, don’t panic… Google actually offers advice on this itself in the Adsense FAQ, and even offers extra tips for ad placement within your forums and blogs.

Let’s look at a couple of examples of successful advert placement from some Adsense websites.

This website utilises the left hand navigation slot for the Adsense links, knowing that most users will automatically look there in an attempt to navigate the website – earning the website owner money from the clicks.

Notice the links at the top of the page? They’re not navigation links; they’re Google Adsense link units, masquerading as navigation.

For a much better example however I’ve used one of my own sites, anonymously of course, to show how to truly Adsense up your website.

Here you can see use of the Link Unit and the 160×600 skyscraper to maximum effect. Obviously with the normal navigation slots used for Adsense placement the usability of the site suffers, and the bounce-rate is extremely high… but the exit links are almost always to Adsense. That, of course, is the idea!

Step 3 – Style your Ads

This is the real trick, where the serious optimisation comes in. Your CTR will soar if your ads don’t look like ads, and instead look like the rest of your site.

Now hold on! We can’t go and style up our Adsense ads outside of the limited colour changes Google affords us can we, it goes against their TOS? True, you can’t… however, you can style up your own text and links to match the Google ads. This is perfectly OK with the big G. Make sure that your link text is the same colour, same font and same size as the Adsense ads and that it is underlined the same. Also make sure you have descriptions underneath your links to match the style and layout of the Google ads.

To be really sneaky (and again even Google recommends this) you can make your Adsense adverts’ background colour the same as your website’s, AND even lose the border on the Adsense ads. This makes them blend in seamlessly with your website.

With your navigation links and your Adsense links working in perfect harmony your website doesn’t look like an ad-fest when visitors first visit it.

Posted in Adsense, Blogger, Blogging, SEO, Tips & Tricks | 1 Comment »

How To Write A Profitable PPC Ad Text

Posted by gemsuraj on September 16, 2007

After all the hard work of researching your market and keywords, you need to make sure your PPC ad will be effective. Here are a few basic guidelines:

Tip #1

Write three ad texts per ad group and make sure you use the ad group’s keywords in the ad text

Tip #2

Make sure each one has a call to action, i.e. summon your customers to act, whether that’s to ‘buy now for free delivery’ or ‘get your product for just £19.99′ the ad must contain a clear call to action

Tip #3

Try different approaches, for example, appeal to consumer through a price-led ad if your prices are competitive, appeal to the benefits they’ll get from using the product or tell them about the special offer you’re running.

Posted in Adsense, SEO | Leave a Comment »

Creating an RSS Feed

Posted by gemsuraj on September 16, 2007

RSS is an acronym that stands for Really Simple Syndication or Rich Site Summary depending on which version of RSS you use. In summary RSS is a small file that is sent out to other websites with news about the site it is based at.

For example people who view the Just Search RSS Feed will receive information on all the latest search engine optimisation and internet marketing ideas. This feed is constantly updated when the staff at Just Search posts a new Blog entry! The advantages of creating an RSS Feed is that it enables more sites and internet users to view your content and URL. This leads to more visitors and recognition within the search engines.

Please find below a quick guide on how to create your own RSS Feed for your site.

1) Firstly you will need to declare the document as XML, this can be achieved with the following line of code

<?xml version=”1.0″ encoding=”UTF-8″ ?>

2) Next you will need to open the RSS and channel tags, your RSS feed will be place within these tags

<rss version=”2.0″>
<channel>

3) The next section of the RSS feed is where you place information about your site, this includes the title, main URL, description, and last build date.

<title>Title of the RSS Feed</title>
<link>http://www.yourwebsite.co.uk</link>
<description>RSS feed description</description>
<lastBuildDate>Wed, 12 Sep 2007 17:00:00 GMT</lastBuildDate>

Simply fill in the title of the Feed, the main URL of your site and a brief description of the site. Within the last build date fill in the date the last time the Feed was last edited. Please note that all dates in the RSS feed should comply to RFC 822 date formats, which should conform to:
Date: ddd, dd, mmm, yyyy
Time: HH:mm:ss

4) Now its time to add your individual items to your RSS feed. Each item should have its own title, link, description and publication date.

<item>
<title>RSS Item Title</title>
<guid>http://www.yourwebsite.co.uk/section</guid>
<description>Items description</description>
<pubDate>Wed, 12 Sep 2007 17:00:00 GMT</pubDate>
</item>
…more items here

Simply fill in the title, URL and description of each item you want to include in your RSS feed. It is a good idea to base these items around your main keywords for the site.

The <guid> element should be used for each individual items URL, you will however have to ensure each item has a unique URL or the feed will not validate.

5) Finally you just need to close the channel and RSS tags

</channel>
</rss>

That’s it for my simple RSS Feed tutorial. It is worth noting that larger more dynamic websites which update regularly would benefit from dynamic RSS feeds which update when new products are added to your database. As of our optimisation process at Just Search we create these feeds for you.

Posted in SEO | 2 Comments »

Tutorial – how to create SEO friendly content

Posted by gemsuraj on September 16, 2007

Text content is one of the most important parts of your website optimisation effort. Without text content, search engines won’t give your site high page ranking, even if you offer everything your customers are looking for. There are a few ways to optimize your content.

- Quantity
Search engines place importance on the quantity of text content. No matter the type of your website is, you should have at least 250 words for each page. The more text you have, the more chance that your site will match the search engine results. Otherwise, you are losing chances of being highly ranked by search engines. In addition, you should have more pages as possible as you can.

- Quality
It’s not only the quantity of content which matters – quality is also very important. Having lots of relevant content with right keyword phrases is helpful of getting ahead of the other websites. Nobody is quite sure what keyword density should be, but the agreeable density should be 3% to 7%. However, don’t insert keywords into your page content that isn’t specifically relevant to. After all, human visitors are the first important group while visiting your site.

- Update frequently
Once your website is live you should consider about changing the content on your pages on a regular basis. Your original pages will not stay at the top of the SERPs without any fresh contents. Updating your content on a regular basis will increase your relevancy.

- Blogging and RSS Feeds
Blogging and RSS Feeds are great ways to show the visitors your thoughts on new relevant features of your industry. Blogging will inform the search engines and directories automatically that you have added new contents in. RSS feeds let your users receive the new information on your site and it can also assist directories to find new contents.

Posted in SEO | 1 Comment »

Don’t Get Involved With Adsense Click Fraud- Google will ban you!

Posted by gemsuraj on September 14, 2007

Imagine the next time you join a discussion about Adsense. When you start sharing the fascinating Adsense facts below, your friends will be absolutely amazed.

Is everything making sense so far? If not, I’m sure that with just a little more reading, all the facts will fall into place.


Many web site owners are getting their Google Adsense account terminated when they have done nothing wrong to deserve the punishment. Considering the money that they are getting from Adsense, they would certainly want to get back into it.
Considering the money to be made with Adsense, it is no wonder that they would want to get back into it.
It is that same consideration why the Google Adsense click fraud is thought of and why many people are getting into it.
Click fraud is the act of clicking on ads for the purpose of costing the advertiser money. It is simply the same as paying out cash for false leads. Many people website owners are aware of this fraud and are sharing the same sentiment that this is the one big problem that Adsense is facing.

How do you prevent being involved in this fraud?
Majority of web hosts are offering access logs. Once this is offered to you, it is necessary that you hand it over to Google as well. This allows them to look for any suspicious activity on your site. Problems like this are very serious and giving it to them is saying that you would want to help them in any way you can in solving the problem.
It can also help if you have a click monitoring software. If you do not have one yet, you should try and get one. There is absolutely no major factor preventing you from having one because most of this software is free.
As usual, all the information you have received should be turned over to Google. This is showing Google that you too are fighting against click frauds and is in no way a part of it.
Study your server logs and watch for any activity that seems suspicious. Report anything that you may find odd, may it big or small thing.
You may want to consider disabling ads for your own IP address and local geographic area. This will certainly prevent accidents and will not make Google mistake another user as you. You can do through a htaccess file. This will avoid Google mistaking as clicking on your own ads and be kicked out because of it.

Read the rest of this entry »

Posted in Adsense | Leave a Comment »

What is the "AdSense formula for earnings"?

Posted by gemsuraj on September 14, 2007

I often get asked what the secret is to making money with Google’s AdSense program. This often comes from people who are dreaming of setting up websites chock full of high-paying keywords for particular niche subjects and then sitting back and watching the money roll in. “What’s the magic formula?” they ask me. If they’re non-technical, I point them straight to my first AdSense book, Make Easy Money with Google, and assure them that they’ll learn everything they need from it. They may think it’s hard, but it’s not.But what about the technical people? By this I mean the people who’ve already set up a blog or website, who have registered domain names, who are comfortable with basic Internet terminology and concepts.

What is the “AdSense formula”?
The only AdSense formula that you need to know is this:

Read the rest of this entry »

Posted in Blogging, SEO | 3 Comments »

Should You Use Linkbait?

Posted by gemsuraj on September 14, 2007

If you post on your blog about a specific subject in hopes of creating a buzz and having others link to you, you’re guilty of linkbaiting. This isn’t necessarily a bad thing. If used effectively, linkbait can be a wonderful tool for increasing traffic and making others aware of your blog. Unfortunately, smarmy types can also use linkbait as spam. Because of this, linkbaiting is often a source of discussion among bloggers. Should you use linkbait in your blog? Let’s explore both sides.

The Benefits of Linkbaiting:

If you notice an increase in traffic pointing to a specific blog post, you effectively posted linkbait. When used correctly, linkbaiting is a powerful promotional tool. Having your post mentioned on other blogs drives traffic to you. Not only might this give you new visitors, but it will also help to increase your search engine and Technorati rankings.

Having your name mentioned around the blogosphere can also help you gain credibility. If you always have something interesting to say, other bloggers point to your posts often and you’ll gain a reputation as a reliable source. Things can only get better from there.

The Down Side of Linkbaiting:

If you’re going to be using linkbait, you better know what you’re talking about. While linkbait can help you gain credibility, it can also do the opposite. What happens if you drive traffic to your site, but have no clue of what you’re talking about? You’ll be regarded as a sham. People may still blog about you but it will be in a negative manner.

Many websites and even some blogs are implementing linkbait to drive traffic to their site to sell something. While there’s nothing wrong with a little shameless self promotion, no one wants to be misled into landing on spam.

Should You Use Linkbait?:

There’s nothing wrong with using linkbait in your blog posts. When you consider how many bloggers post in hopes of bringing in traffic and gaining attention, most of us can be accused of linkbaiting on more than one occasion. I suppose you have to ask yourself if you’ll be using your powers for good or evil. Will visitors be landing on your blog in hopes of an interesting read, or will they turn away in disappointment because you’re pitching your latest e-book? Linkbait is a tool, use it to your advantage.

 

Posted in Blogging, Tips & Tricks | Leave a Comment »

What is Digg?

Posted by gemsuraj on September 14, 2007

By now you must have at least heard of Digg, a popular news site. Do you know what it is and how it works? When used properly, you can use Digg to drive traffic to your blog. When taken advantage of, Digg can become a magnet for spam. What follows is look at Digg.

How Does it Work?:

Digg is a contributor-generated social news site. While many people don’t quite understand how Digg works, it’s actually quite simple. A contributor will submit a news story to Digg. Other members will vote “or digg” for the same story. Popular stories might have hundreds of diggs, while others fade into obscurity with nary a digg at all. Stories “dugg” by 40 or 50 users have a good chance of showing up on Digg’s main page, driving traffic to the website or blog that originally broke the story. Digg users can also “bury” a story or label it as being “lame.” This of course moves it further back in the Digg basement.

How Can it Benefit My Blog?:

If you break a news story or post an interesting how-to, you can submit it to Digg. Once submitted, it can drive traffic to your blog. Usually the traffic is short lived and you only see an increase for a day or two. With luck, some of those visiting your site will bookmark it so they can visit often.

You can also install a “Digg This” button under news-worthy posts on your blog. This will enable your readers to submit or digg your post.

Social Networking:

Registered members can comment on the different news articles. Members can also make “friends” with other member and view their statistics.

Disadvantages of Digg:

One popular complaint is that writers will pay Digg’s top contributors to post their stories in hopes of having it appear on Digg’s main page. Another is that phony or spammy news is also posted and dugg. Top users can rule Digg. They will vote on each other’s contributions and decide which articles get to the front page. These scenarios are damaging to Digg’s credibility.

Digg’s emphasis is on technology, science, politics, entertainment and politics. If blog something different, you’ll have to get creative when submitting to Digg. Though it’s meant to be a site for real news fluff still gets through.

Posted in Blogging, SEO, Tips & Tricks | Leave a Comment »

How Often Should You Update Your Blog?

Posted by gemsuraj on September 14, 2007

Every day is better than once a week

I get a lot of mail both here at About Weblogs and also though my other email addresses. The question I’m asked most often, (besides “How do I get a job at About.com?” is “How often should I post?”

Different people have different responses but most of us agree, the more you post the better. Now we can get into a lot of technical talk regarding page views and SEO. Indeed, lots of posts means lots of pages indexed by the search engines, but to me the answer is simple. If you post often, people will expect this and visit often. One to three times each day is best.

Don’t get me wrong. It’s not enough to just post, you have to actually say something. If you really know your topic, this shouldn’t be a problem.

My recommendation is to post at least five out of seven days each week, more if you can. Keeping the quality content flowing is the best, most foolproof way to bring in traffic. The only reason people stop showing up, is if there’s nothing there to see.

Posted in Adsense | Leave a Comment »