Monday, 3 February 2014

Get Great Blog Post Ideas by Using the Google Keyword Planner

0 comments Posted by Unknown at 16:48
Do you wish you had the knack of picking popular topics that will bring you lots of search engine traffic?
You don’t need to be a marketing guru or great at following a trend. Instead, you can find out what readers are searching for … and tailor your posts to fit them.
If you’ve been blogging (or thinking about blogging!) for a while, you’ll have come across the concept of keywords. These are simply search terms that people use in Google and other search engines.
By writing a post inspired by a popular keyword term, you increase your chances of getting organic search engine traffic.
(Organic traffic is the kind that comes naturally, as opposed to paid traffic, which is from people clicking on ads.)
When Google’s Keyword Tool was replaced by the Keyword Planner, I found it a little hard to get to grips with, especially as it’s designed for advertisers rather than bloggers to use. It’s thanks to my friend Joe Williams that I’m getting the hang of using it now.
Joe made a great video demonstrating exactly how to use the Keyword Planner for SEO (search engine optimisation) purposes. He writes:
Would you like to research keywords and prioritise the best ones for SEO?
If you give me 17 minutes I’ll show you how to do just that one page at a time, and we’ll cover best practices for using the Google Keyword Planner.
And if you’re using keyword research to help you build your blog, tell us about your experiences (and share your best tips) in the comments below.
Read More »

Wednesday, 29 January 2014

Always Prefer Written Communications

0 comments Posted by Unknown at 16:29
When conducting business deals there’s always the possibility to grab the phone and call the other entity directly. It doesn’t involve the trouble of composing an email or a letter, and it will give you the answer or information you are looking for immediately.
So is communicating over the phone a good think? In my opinion, rarely.
Sure, the phone is useful when you just need to discuss details or get a quick piece of information. But when you are dealing with central aspects of the deal (i.e., specifications of the project, discussion about prices and costs, deadlines and so on), it is always a good idea to use written communications, be it email, fax or letters.
Why?
Because the exchanged messages will be permanently stored, and this might be your salvation if down the road there is some disagreement regarding any aspect of the deal.
I forgot this basic rule twice over the past couple of years. Basically I discussed some important project aspects over the phone, and months later when we disagreed I didn’t have anything to prove that conversation had taken place.
This Latin proverb sums it up: Verba volant, scripta manent (Spoken words fly, written words remain).
Read More »

Sunday, 26 January 2014

Five Crucial HTML Tags Every Blogger Should Know

0 comments Posted by Unknown at 16:44
In today’s post, I’ll go through some simple HTML tags that every blogger should know about.
You can add extra information within some tags, too, as you’ll see in the examples – for instance if you want position an image centrally, or make a link open up in a new tab.
Keep in mind that you don’t need to type these tags when creating posts in WordPress: you can use the buttons in the visual editor instead. (Or you can copy your post in from Word, with formatting already in place.)

<p>

The <p> tag indicates a paragraph. Each paragraph needs to start with <p> and end with </p> so that your browser knows where to put the line breaks.
(HTML code doesn’t recognise spaces, except the space between two words.)
In WordPress, <p> tags are added automatically by your blog’s code and don’t appear in the Text editor. (You can also choose to add them automatically in widgets.)
If you go to a post on your blog and click “View source” in your browser, you’ll see the <p> and </p> wrapped around each paragraph:
HTML-code-showing-paragraphs

<h1>, <h2>, <h3> … and more

HTML has special tags for headers and subheaders, which are:
<h1> — the biggest, “Heading 1”
<h2> — the next biggest (this is what I’m using for subheadings in this post)
… and so on down to <h6>
Normally, you won’t use <h1> in your content as that’s used for the title of your blog post or page.
To use a header tag, simply wrap it around your subheading like this:
<h2>Your Next Steps</h2>

<a href> – Creates a Link

The “a href” tag creates a hyperlink. If a link ever goes awry, it’s useful to know what the code looks like so you can fix it.
Here’s a link and the code for it:
<a href="http://www.dailyblogtips.com">DailyBlogTips</a>
You can add extra features to your link. For instance:
<a href="http://www.dailyblogtips.com" target="_blank" 
title="This link opens in a new window/tab">DailyBlogTips</a>
This produces a link like this (hover your cursor over it to see the title):
If your link doesn’t work…
  • Check that you’ve used straight quotes not curly (smart) quotes.
  • Check that you haven’t missed one of the quotation marks.
  • Check that the URL starts with http://

<img> – shows an image

The “img” tag shows an image, like this one (me and my daughter Kitty on Christmas Eve):

In its simplest form, as for the image above, it looks like this:
<img src="http://www.dailyblogtips.com/wp-content/uploads/
Xmas-Eve.jpg"/>
You can add extras to your image too, e.g. title text (which appears when the user hovers over the image). If you want to center an image in WordPress, use class=aligncenter.
<img src="http://www.dailyblogtips.com/wp-content/uploads/
Xmas-Eve.jpg" class="aligncenter" title="Ali and her daughter 
Kitty on Christmas Eve"/>

Note: This tag is opened and closed in one. The forward slash at the very end of the tag closes it.

<ul>, <ol> and <li> – Creating Lists

Here’s an “unordered list” in HTML:
<ul><li>Bread</li>
<li>Milk</li>
<li>Carrots</li>
<li>Potatoes</li></ul>
This displays as:
  • Bread
  • Milk
  • Carrots
  • Potatoes
Note how each list item has <li> at the start and </li> at the end, and the whole list has <ul> at the start and </ul> at the end.
To use numbers instead of bullet points, simply switch the <ul> and </ul> for <ol> and </ol>. You’ll get an “ordered list” like this:
  1. Bread
  2. Milk
  3. Carrots
  4. Potatoes

Do you have a sixth essential tag to add – or other HTML tips to share? Let us know in the comments.
Read More »
 

© 2011. All Rights Reserved | A2z Earning Articles Box | Template by Blogger Widgets

Home | About | Top