Monday, December 10, 2012

Best of blog award

A Germany organization Deutche Welle organizes award for blogger around the world every year. There are 17 categories in a total of 11 languages in the BOBs (BOB = Best Of Blog). Submissions to the contest can be in the any of the following languages: Arabic, Bengali, Chinese, English, French, German, Indonesian, Persian, Portuguese, Russian, Spanish.
If you want to participate in this competition, just go to their website and read details. 

Multilingual categories - Jury Award & User Prize

Thursday, August 30, 2012

Submit XML sitemap to search engines

If you are a programmer, then you can create your own xml sitemap. But if you cannot, then there are lots of website which do it for you in gratis. You shall find easily these kind of websites through search engines by searching ‘make xml sitemap’.
If you use wordpress, you can use the google xml plugin. This plugin shall create an xml sitemap for your Wordpress site.

After creating your xml sitemap, you have to upload it to www.yourdomain.com/sitemap. xml. You have to submit this url as your xml sitemap url to search engines.

Friday, August 24, 2012

Terms of blogosphere


Anonoblog - a blog written and maintained by an anonymous blogger.

Blogosphere - the collective content of the blogs worldwide.

Blook - book written by blogger and generally grow out of his blog.

Copyright – the exclusive right of a person to copy, publish etc.  

Endnotes – the reference list at the end of an article.

Thursday, August 23, 2012

How to delete blogger/ blogspot blog

To delete blogger blog, follow the steps below:

1 Go to the blog dashboard which you want to delete. I am on dashboard of blogging help blog.



Thursday, August 16, 2012

Add google translator to your blog

Increase traffic to blog

Addition of Google translator shall increase your blog's/ website's visitors. Because your visitors shall be able to see your website on different languages. So a person who does not know the language of your blog, shall be able to read your website in his language.<br />

How to add Google translator

To add Google translator go to <a href="http://translate.google.com/translate_tools" rel="nofollow" target="_blank">http://translate.google.com/translate_tools</a>. You can determine criteria and then add the code to your blog/ website. You can use 'add to blogger' button if you are blogging on blogger.<br />
Addition of google translator shall increase visitors of your website. Because visitors shall be able to view your site in their own languages.

Sunday, July 15, 2012

HTML elements

This is lesson 4 of HTML. The elements of HTML are
(the code to test all of these elements is given at the bottom)
<a> … </a>
The a (anchor) element is used to set link.
Attributes: href, name
Example: <a href="www.websitebuildingguide.blogspot.com">build website</a>

<b> … </b>
This is used to bold a text.

Attributes: none
Example: <b>this is bold text</b>

HTML basics

 A HTML document has elements. Elements have attributes. Attributes have values. For example,The elements of basic HTML document is

<html>
<head>
<title> … </title>

</head>
<body>

</body>
</html>