<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Blog Oh Blog</title>
	<link>http://www.blogohblog.com</link>
	<description>Of the Bloggers, By the Bloggers, For the Bloggers</description>
	<pubDate>Sat, 10 May 2008 19:26:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>Nifty Rounded Edges Using Only CSS</title>
		<link>http://www.blogohblog.com/nifty-rounded-edges-using-only-css/</link>
		<comments>http://www.blogohblog.com/nifty-rounded-edges-using-only-css/#comments</comments>
		<pubDate>Sat, 10 May 2008 19:25:19 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[Tips]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Rounded Edges]]></category>

		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/nifty-rounded-edges-using-only-css/</guid>
		<description><![CDATA[If you have a Google Analytics account, you must have seen that Google uses slightly rounded edges in the menu buttons on the left. See the picture below :-

Today, I will teach you how to give these nifty little rounded edges to your menu. Given below is the CSS code. This goes into the head [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a Google Analytics account, you must have seen that Google uses slightly rounded edges in the menu buttons on the left. See the picture below :-</p>
<p><img src='http://www.blogohblog.com/wp-content/pop/2008/05/roundedtips.gif' alt='CSS Rounded Tips' /></p>
<p>Today, I will teach you how to give these nifty little rounded edges to your menu. Given below is the CSS code. This goes into the head section of your HTML file. :-</p>
<p><strong>CSS</strong></p>
<p><code><br />
&lt;style&gt;<br />
ul {<br />
&nbsp;&nbsp;&nbsp;&nbsp;width:180px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;list-style-type:none;<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin:0 auto;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding:0;<br />
}<br />
&nbsp;<br />
li a {<br />
&nbsp;&nbsp;&nbsp;&nbsp;display:block;<br />
&nbsp;&nbsp;&nbsp;&nbsp;position:relative;<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-width:1px 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-color:#ccc;<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-style:solid;<br />
&nbsp;&nbsp;&nbsp;&nbsp;color:#555;<br />
&nbsp;&nbsp;&nbsp;&nbsp;text-decoration:none;<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin:4px 1px;<br />
}<br />
&nbsp;<br />
li a span {<br />
&nbsp;&nbsp;&nbsp;&nbsp;display:block;<br />
&nbsp;&nbsp;&nbsp;&nbsp;position:relative;<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin:0 -1px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-width:0 1px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-color:#ccc;<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-style:solid;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background-color:#eee;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding:2px 6px;<br />
}<br />
&nbsp;<br />
li a:hover {<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-color:#aaa;<br />
&nbsp;&nbsp;&nbsp;&nbsp;color:#333;<br />
}<br />
&nbsp;<br />
li a:hover span {<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-color:#aaa;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background-color:#ddd;<br />
}<br />
&lt;/style&gt;<br />
</code></p>
<p>Here is the HTML needed. This goes in the body of your HTML file. :-</p>
<p><strong>HTML</strong></p>
<p><code><br />
&lt;ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;Home&lt;/span&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;About&lt;/span&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;Products&lt;/span&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;Services&lt;/span&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=&quot;#&quot;&gt;&lt;span&gt;Contact&lt;/span&gt;&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
</code></p>
<p>Once you have copied the above pieces of code into your HTML file and when you run it, you should see something like this :-</p>
<p><img src='http://www.blogohblog.com/wp-content/pop/2008/05/rounded-edges.gif' alt='rounded edges' /></p>
<p>So, you can see that these rounded corners can be created without using any kind of images. You can download the source file here :- <a href="http://www.blogohblog.com/request/rounded_edges.zip">Download</a></p>
<p>Please let me know if you have any problems or just leave comments if you like it. <img src='http://www.blogohblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2Fnifty-rounded-edges-using-only-css%2F';
  addthis_title  = 'Nifty+Rounded+Edges+Using+Only+CSS';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/nifty-rounded-edges-using-only-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is Piracy Killing the PC Gaming Industry ?</title>
		<link>http://www.blogohblog.com/is-piracy-killing-the-pc-gaming-industry/</link>
		<comments>http://www.blogohblog.com/is-piracy-killing-the-pc-gaming-industry/#comments</comments>
		<pubDate>Thu, 08 May 2008 12:40:35 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[Fun]]></category>

		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Consoles]]></category>

		<category><![CDATA[Dying]]></category>

		<category><![CDATA[PC Gaming]]></category>

		<category><![CDATA[Piracy]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/is-piracy-killing-the-pc-gaming-industry/</guid>
		<description><![CDATA[
I have been a PC gamer for the past fifteen years. I play a lot of games on my PC in my free time, not only to unwind, but also to satiate the hardcore gamer inside me. Off lately, I have been following many gaming forums and websites which are talking about the downfall of [...]]]></description>
			<content:encoded><![CDATA[<div align="center" style="padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/pcgamingindustry.gif' alt='Is Piracy Killing the PC Gaming Industry ?' /></div>
<p>I have been a PC gamer for the past fifteen years. I play a lot of games on my PC in my free time, not only to unwind, but also to satiate the hardcore gamer inside me. Off lately, I have been following many gaming forums and websites which are talking about the downfall of the PC gaming scene because of the increasing piracy of the games. This fact is really disturbing for me as I have been an avid gamer and do not want to lose one of my most passionate hobbies. </p>
<p>The downfall is evident from the fact that most of the popular game titles are being released for the consoles even before they make their appearance on the PC, or even a declaration is made that they will be available for the PC. Popular games like GTA (Grand Theft Auto) which were exclusive for the PC in the past years, are now being launched for the consoles first (take the example of the latest GTA IV which has been already released for PS3 and XBOX360) rather than the PC. The foremost reason would be the falling sales figures of the PC titles and the rapid increase in the piracy of games. And because of this reason, major game publishers are switching to the consoles arena where the piracy element is much less. Although some companies are adopting new methods for game distribution like <strong>Valve</strong> which sells their titles through their online distributor (Steam) which allows you to download all the game content after you have purchased it online. Some game publishers also use strict copy-protection techniques, but then again, these methods install extra software into your computers and totally kill the experience for the gamers.</p>
<p>So, why do you think people pirate games? Is it because they cannot buy them? I really don&#8217;t agree with that because if you can buy fuel for your car every time you want to drive, or buy food when you are hungry, so is the case for buying anything that entertains you. The main reason for piracy is that the PC games are easily available for download from the Internet, P2P networks, Torrents etc. Just think how many times have you downloaded a game and then only played it for a short while before deleting it from your hard drive. I am sure this has happened many times. Would you have done the same if you had bought that game? No, I don&#8217;t think so. If you ever decided to buy a popular game title, you would have first made sure that you read all the available reviews on the Internet about that particular game, asked your gamer friends about their experiences, and finally based on those opinions, you would have gone out and purchased the game.</p>
<p>Some people also stick to the rule that if they like a game after pirating it, they go out and buy it from the market to support the publishers. What if you like most part of it and for the small part that you don&#8217;t like, you decide not to buy it? How many times have you done that? What i mean to imply here is the fact that such opinions cannot be always unbiased and true. If you want to support the gaming companies only after testing their products for 100% results, you are not playing fair. There are always game demos which you can play and try out these games to your heart&#8217;s content.</p>
<p>There is one more reason for the decreased number of people indulging in PC gaming. For playing all the new graphically intensive games on your PC, you need expensive hardware (graphics cards, processors, memory) which you have to upgrade regularly to match the latest games&#8217; requirements, and it doesn&#8217;t stop there, you also need to be technically sound to patch your games, upgrade hardware etc. On the other hand, consoles are pretty simple. You buy a console system, pop in the DVD and start playing. That&#8217;s all there is to consoles. Personally, I do not prefer playing on a console as nothing beats the total control that I get using a keyboard and a mouse.</p>
<p>I think people who like PC gaming should really stand up and support the game publishers because this is the right time to do so. Or else, you can just keep waiting for quality game titles to be released for the PC and gradually watch the PC gaming industry die.</p>
<p>So, what is your take on this topic? Do let me know through the comments.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2Fis-piracy-killing-the-pc-gaming-industry%2F';
  addthis_title  = 'Is+Piracy+Killing+the+PC+Gaming+Industry+%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/is-piracy-killing-the-pc-gaming-industry/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Premium WordPress Theme - BobV3</title>
		<link>http://www.blogohblog.com/premium-wordpress-theme-bobv3/</link>
		<comments>http://www.blogohblog.com/premium-wordpress-theme-bobv3/#comments</comments>
		<pubDate>Tue, 06 May 2008 14:57:50 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[Premium WordPress Themes]]></category>

		<category><![CDATA[Blog Oh! Blog]]></category>

		<category><![CDATA[BobV3]]></category>

		<category><![CDATA[Premium WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/premium-wordpress-theme-bobv3/</guid>
		<description><![CDATA[The most successful free WordPress theme on Blog Oh! Blog till date has been Bob V2.0 and this is visible by the number of comments and trackbacks that people have left for that theme.
Following on those lines, I am releasing the 3rd version of the Bob theme called BobV3, but this one does not come [...]]]></description>
			<content:encoded><![CDATA[<p>The most successful free WordPress theme on Blog Oh! Blog till date has been Bob V2.0 and this is visible by the number of <a href="http://www.blogohblog.com/wordpress-theme-blog-oh-blog-v20/">comments and trackbacks</a> that people have left for that theme.</p>
<p>Following on those lines, I am releasing the 3rd version of the Bob theme called <strong>BobV3</strong>, but this one does not come for free like the previous versions. This will be a <strong>Premium WordPress theme</strong> priced at <strong>$89.99</strong>. I know that a lot of people like BobV2.0 and will not really mind spending some money to upgrade their themes and take their blogs to the next level.</p>
<div align="center" style="padding-top:10px; padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/bobv3.gif' alt='BobV3' /></div>
<p><a href="http://wpthemes.blogohblog.net/index.php?wptheme=bobv3">Test Run BobV3</a> | <a href="http://www.blogohblog.com/premium-wordpress-themes#bobv3">Buy BobV3</a></p>
<p><strong>Design &#038; Layout</strong></p>
<p>BobV3 has a very unique layout which cannot be found anywhere on the Internet. The front page of the blog (which usually is set to display ten entries at a time) has been divided into different sections which will let you display all your posts without having the user to scroll down the page. This has been accomplished by using excerpts and the accordion feature of the Mootools JavaScript library. So if you have your blog&#8217;s front page set to show ten blog entries, you will see the first entry in full, next two entries in excerpts and the last seven entries in the form of an accordion. This accordion has also been integrated with the first entry so you have only one full post open at a time. This will allow your readers to browse your lengthy entries without any hassles by expanding and collapsing the entry titles.</p>
<div align="center" style="padding-top:10px; padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/accordion.gif' alt='Accordion' /></div>
<p>The archives and the search page have also been styled for maximum ease to find information on your blog.</p>
<p><strong>SEO Benefits</strong></p>
<p>The theme has been designed keeping the SEO (Search Engine Optimization) benefits in mind. All the page titles are Search Engine friendly and the theme uses proper formatting with the header tags (H1,H2,H3) keeping the content well-structured and targeted for maximum exposure. A Breadcrumbs plugin has also been integrated for easy navigation of pages.</p>
<div align="center" style="padding-top:10px; padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/breadcrumbs.gif' alt='Breadcrumbs' /></div>
<p><strong>Best of my Posts</strong></p>
<p>This is a new feature that I have applied in this premium theme. It retrieves the titles of the most popular entries in descending order (based on the number of comments) and fades them in one-by-one through a fading transition effect on the right sidebar. This is an eye-grabbing effect which will surely make your popular posts more popular <img src='http://www.blogohblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div align="center" style="padding-top:10px; padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/bestofmypost.gif' alt='Best of my Posts' /></div>
<p>The fading transition is automatic but it pauses when the reader hovers the cursor on a post title.</p>
<p><strong>Advertisements</strong></p>
<p>The theme allows you to run 125&#215;125 banner ads on the sidebar and you can increase them according to your requirements. The images for the ads can be placed in separate folder to distinguish them from other images of your theme.</p>
<div align="center" style="padding-top:10px; padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/ads.gif' alt='Ads' /></div>
<p><strong>Tabbed Content</strong></p>
<p>BobV3 also allows you to have your classified content under different tabbed sections in the right sidebar. This uses JavaScript and preloads your content for quick access.</p>
<div align="center" style="padding-top:10px; padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/tabs.gif' alt='Tabs' /></div>
<p><strong>Quick Categories</strong></p>
<p>Your blog readers can now have quick access to your categories from the top right section of your theme. Browsing through your categories will be just at a click&#8217;s distance for your readers.</p>
<div align="center" style="padding-top:10px; padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/search.gif' alt='Quick Categories' /></div>
<p><strong>WP2.5 Gallery</strong></p>
<p>Most of the premium themes available in the market lack the styling of the new gallery feature that has been introduced through WordPress 2.5 version. BobV3 has properly defined styles for this new gallery feature and all your images will be properly aligned in your pages or posts.</p>
<div align="center" style="padding-top:10px; padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/gallery.gif' alt='Gallery' /></div>
<p>Most themes available cannot show the following navigational thumbnails while viewing the pictures :-</p>
<div align="center" style="padding-top:10px; padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/gallerynav.gif' alt='Gallery Navigation' /></div>
<p><strong>Gravatar-Ready</strong></p>
<p>This theme is ready for the WordPress 2.5 inbuilt Gravatar functionality with a beautifully styled comments section. It is also backward compatible so you can use the theme with previous versions of WordPress (I will not recommend it though).<br />
BobV3 has been tested with Firefox and Internet Explorer (6.0 upwards) and has not shown any discrepancies so far. </p>
<p>Apart from the above features, BobV3 also comes with the following advantages :-</p>
<p>- Valid CSS and XHTML code<br />
- Widget Ready Sidebars<br />
- Subscribe by E-mail Feedburner Box<br />
- Tags Ready<br />
- Custom 404 Error Page<br />
- Full Post-Sales Support</p>
<p>So, what are you waiting for ? Go ahead and buy this most amazing next-gen theme called &#8220;BobV3&#8243; ! It&#8217;s only <strong>$89.99</strong>!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2Fpremium-wordpress-theme-bobv3%2F';
  addthis_title  = 'Premium+WordPress+Theme+-+BobV3';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/premium-wordpress-theme-bobv3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Make Random Header Images?</title>
		<link>http://www.blogohblog.com/how-to-make-random-header-images/</link>
		<comments>http://www.blogohblog.com/how-to-make-random-header-images/#comments</comments>
		<pubDate>Fri, 02 May 2008 18:14:58 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[Graphics]]></category>

		<category><![CDATA[Info]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Random Header]]></category>

		<category><![CDATA[Random Header Image]]></category>

		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/how-to-make-random-header-images/</guid>
		<description><![CDATA[
You are using a neat WordPress theme with an image header but want to have multiple images that you can randomize on your blog? Here is how to go about it&#8230;
STEP 1 - Editing Images
Make all your header images that you want to randomize of the same size (dimensions) and format. For example, if you [...]]]></description>
			<content:encoded><![CDATA[<div align="center" style="padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/05/random-header.gif' alt='Random Header Tutorial' /></div>
<p>You are using a neat WordPress theme with an image header but want to have multiple images that you can randomize on your blog? Here is how to go about it&#8230;</p>
<p><strong>STEP 1 - Editing Images</strong></p>
<p>Make all your header images that you want to randomize of the same size (dimensions) and format. For example, if you have <strong>GIF</strong> images then all should be of the same extension. I hope you get the point. </p>
<p><strong>STEP 2 - Naming Images</strong></p>
<p>All the names of your header images should follow a similar pattern. Here is an example we will use :-</p>
<p>blogtop-1.gif<br />
blogtop-2.gif<br />
blogtop-3.gif<br />
blogtop-4.gif</p>
<p>We do this because when writing the code, we will try to randomize the number part (logically, randomization is done by numbers in any programming language) and keep the text part similar for all.</p>
<p><strong>STEP 3 - Moving the Image Files</strong></p>
<p>Move all your header image files to the &#8220;<em>images</em>&#8221; folder in your theme folder. Most probably, if you are using a theme that uses images, then it should have an &#8220;<em>images</em>&#8221; sub-folder. If not, make one and put all your header images in there.</p>
<p><strong>STEP 4 - Randomizing the Images</strong></p>
<p>Open your header.php file from the theme folder in a text editor. Put this code just below the <body> tag.</p>
<p><code><br />
&lt;?php <br />
$header_image = rand(1,4);<br />
?&gt;<br />
</code></p>
<p>The <strong>rand()</strong> function actually picks up a random number from the number of items you have specified. We are going to use this function to randomize and pick 1 item from the 4 header images in the &#8220;<em>images</em>&#8221; folder.  So, if you have more than four images, just change 4 to your number. </p>
<p><strong>STEP 5 - Using the Randomization in the Actual Header</strong></p>
<p>This part can be a bit tricky as it will require you to find the code where your theme calls the actual header image (the one being used in the default theme). Usually, most of the professional theme designers define the header image through the <strong>CSS</strong> background property of the header DIV. So, you will have to get rid of that technique and use the old school HTML technique to call the image in the header DIV or the place where you want your header image to be located.</p>
<p>Ideally, the following piece of code will pull your header images in your theme :-</p>
<p><code><br />
&lt;img src=&quot;&lt;? bloginfo(&#039;template_directory&#039;); ?&gt;/images/blogtop-&lt;? echo $header_image; ?&gt;.gif&quot; alt=&quot;header&quot; /&gt;<br />
</code></p>
<p>So, basically this code will insert the value of the variable $header_image after &#8220;blogtop-&#8221; and this will pull out the image from the &#8220;<em>images</em>&#8221; folder. All you have to do is figure out where exactly to place this img code in your theme header.</p>
<p>This concludes the <strong>random header tutorial</strong> and if you have questions, just ask here in the comments.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2Fhow-to-make-random-header-images%2F';
  addthis_title  = 'How+to+Make+Random+Header+Images%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/how-to-make-random-header-images/feed/</wfw:commentRss>
		</item>
		<item>
		<title>8 Google Tools that you Might not Know About!</title>
		<link>http://www.blogohblog.com/8-google-tools-that-you-might-not-know-about/</link>
		<comments>http://www.blogohblog.com/8-google-tools-that-you-might-not-know-about/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 22:07:34 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[Info]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Resources]]></category>

		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[Google Tools]]></category>

		<category><![CDATA[Google.com]]></category>

		<category><![CDATA[Webmasters]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/8-google-tools-that-you-might-not-know-about/</guid>
		<description><![CDATA[
I am thankful to Google because it has made the Internet a better place for all of us by releasing a number of very useful utilities in the past few years. Almost all of us use Google.com for their every day search on the Internet, and also other Google services like Gmail, Gtalk, Orkut etc. [...]]]></description>
			<content:encoded><![CDATA[<div align="center" style="padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/04/google.gif' alt='Google' /></div>
<p>I am thankful to Google because it has made the Internet a better place for all of us by releasing a number of very useful utilities in the past few years. Almost all of us use Google.com for their every day search on the Internet, and also other Google services like <a href="http://www.gmail.com">Gmail</a>, <a href="http://www.google.com/talk/">Gtalk</a>, <a href="http://www.orkut.com">Orkut</a> etc. But there are some Google products that you might have forgotten about or might not be aware of. Here is a list of those not-so-popular tools that can definitely make your life easier :-</p>
<p>- <a href="http://www.google.com/trends">Google Hot Trends</a> (May 2007)</p>
<p>I highly recommend this tool if you are a webmaster and looking for hot topics and keywords that people are searching for in their daily lives. This can even help you as a blogger to choose the most current topic in your niche to write on. The tool lists all the hot trends by date and its very easy to switch between dates as per the calendar. This Google product is still in the Labs (experimental phase), but I have been using it for a long time now.</p>
<p>- <a href="http://sketchup.google.com/">Google SketchUp</a> (January 2007)</p>
<p>Google SketchUp is a 3D (3-dimensional) modeling program designed for professionals to use in their every day projects. SketchUp may also be used to design buildings to be displayed on Google Earth (another application from Google that allows you to view satellite maps of the earth). SketchUp has been developed to be more intuitive, flexible, and easier to use than other 3D modeling programs like 3D Studio Max, MAYA etc. which are often difficult to learn for an average user. Several features allow designers to play with their designs, unlike other 3D CAD programs.</p>
<p>- <a href="http://webaccelerator.google.com/">Google Web Accelerator</a> (May 2005)</p>
<p>Google Web Accelerator is a utility introduced by Google which uses client software installed on the user&#8217;s computer, as well as data caching on Google&#8217;s servers, to speed up average page load times by means of data compression, prefetching of content, and sharing cached data between users. The tool supports various operating systems like Windows 2000 (SP3+), Windows XP, Windows Server 2003 and Windows Vista. </p>
<p>- <a href="http://docs.google.com">Google Docs</a> (February 2007)</p>
<p>I am sure many of you must have already heard about this Google product. This is an initiative taken up by Google to allow the public to maintain their office files (Documents, Spreadsheets, Presentations) in an online as well as offline version. Google Docs lets you edit and modify your files online and also lets you share them with your team or friends. It supports all the popular file formats like Word, OpenOffice, RTF, PDF, HTML, Zip, XLS, CSV, TXT, ODS, PPT and PPS.</p>
<p>- <a href="http://www.google.com/webhp?complete=1&#038;hl=en">Google Suggest</a></p>
<p>Google Suggest offers keyword suggestions in real time as you type your search query. This can be helpful if you are looking for information but can&#8217;t think of accurate and exact search terms. A product still in testing mode but you can use it anyway.</p>
<p>- <a href="http://labs.google.com/sets">Google Sets</a></p>
<p>Google Sets is again a product being developed in Google Labs that can suggest you different sets of keywords related to the words you input into the system. So, if you are running out of synonyms or are generally looking for ideas matching your words, this is the place to look for.</p>
<p>- <a href="http://www.google.com/alerts?hl=en">Google Alerts</a></p>
<p>Google Alerts is a handy utility if you want to remain updated with the latest news about your selected topic/s. This service alerts you in the form of an email notification to let you know if new articles are available for you. Google Alerts also allow its users to determine the frequency in which checks are made for new results. The alerts are available in both HTML and plain text format.</p>
<p>- <a href="http://www.google.com/books?hl=en">Google Book Search</a></p>
<p>If you are a books lover, this service is for you. Google Book Search is a tool from Google that searches the full text of books that Google scans and stores in its digitized database. The service was formerly known as Google Print when it was introduced at the Frankfurt Book Fair in October 2004. When you click a result from the Google Book Search, it opens an interface in which you may view pages from the searched book as well as content-related advertisements and links to the publisher&#8217;s website and booksellers. Google limits the number of viewable pages and attempts to prevent page printing and text copying of material under copyright.</p>
<p>For more updates on tools from Google, you can visit this page -> <a href="http://www.google.com/options/">Google Products</a></p>
<p>By the way, if you want to have some fun, go to Google.com and type this search phrase &#8220;Google Chuck Norris&#8221; and hit &#8220;<em>I&#8217;m Feeling Lucky</em>&#8221; button instead of the standard &#8220;<em>Google Search</em>&#8221; button.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2F8-google-tools-that-you-might-not-know-about%2F';
  addthis_title  = '8+Google+Tools+that+you+Might+not+Know+About%21';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/8-google-tools-that-you-might-not-know-about/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Funny Flash Game</title>
		<link>http://www.blogohblog.com/a-funny-flash-game/</link>
		<comments>http://www.blogohblog.com/a-funny-flash-game/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 22:08:42 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[Fun]]></category>

		<category><![CDATA[Flash Game]]></category>

		<category><![CDATA[Funny Flash Games]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/a-funny-flash-game/</guid>
		<description><![CDATA[I just found this really nice flash game which tests your concentration skills. You have to move your mouse cursor slowly without touching the edges and get to the finishing point. The game has various levels and if you make through all of them, consider yourself a real player  So, how steady is your [...]]]></description>
			<content:encoded><![CDATA[<p>I just found this really nice flash game which tests your concentration skills. You have to move your mouse cursor slowly without touching the edges and get to the finishing point. The game has various levels and if you make through all of them, consider yourself a real player <img src='http://www.blogohblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> So, how steady is your hand?</p>
<p><EMBED src="http://magicbook.e-maga.jp/PC/maze.swf" quality=high bgcolor=#333399 WIDTH="500" HEIGHT="400" NAME="Yourfilename" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2Fa-funny-flash-game%2F';
  addthis_title  = 'A+Funny+Flash+Game';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/a-funny-flash-game/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress Theme - AdsPress</title>
		<link>http://www.blogohblog.com/wordpress-theme-adspress/</link>
		<comments>http://www.blogohblog.com/wordpress-theme-adspress/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 19:16:33 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[WordPress Themes]]></category>

		<category><![CDATA[Adsense-Ready]]></category>

		<category><![CDATA[Widget Ready]]></category>

		<category><![CDATA[WordPress 2.5 compatible]]></category>

		<category><![CDATA[Wordpress Theme]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/wordpress-theme-adspress/</guid>
		<description><![CDATA[I am proud to release another free WordPress theme called &#8220;AdsPress&#8220;. The theme is ready to use with Google Adsense and the advertisement blocks are perfectly placed (tested &#038; tried) for giving you the maximum revenue out of your websites.
This is a widgetized, gravatar ready, 2-column theme with inbuilt WordPress 2.5 gallery optimization. I am [...]]]></description>
			<content:encoded><![CDATA[<p>I am proud to release another free WordPress theme called &#8220;<strong>AdsPress</strong>&#8220;. The theme is ready to use with Google Adsense and the advertisement blocks are perfectly placed (tested &#038; tried) for giving you the maximum revenue out of your websites.</p>
<p>This is a widgetized, gravatar ready, 2-column theme with inbuilt WordPress 2.5 gallery optimization. I am sure that people looking to benefit from Google&#8217;s Adsense publisher program will find this WordPress theme useful for the purpose. I have also included the logo.psd file for modifying the logo image in the theme folder.</p>
<p>The adsense codes are included as images for the theme demo, but you can modify the adsense files and include your own adsense code to show your advertisements.</p>
<p><strong>AdsPress</strong> is compatible with WordPress 2.5 and has been tested with Firefox and Internet Explorer.</p>
<div align="center" style="padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/04/adspress.gif' alt='AdsPress' /></div>
<p><a href="http://wpthemes.blogohblog.net/index.php?wptheme=adspress">Test Run</a> | <a href="http://www.blogohblog.com/download/adspress.zip">Download</a></p>
<p>Please give your comments to make this effort worthwhile for me <img src='http://www.blogohblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2Fwordpress-theme-adspress%2F';
  addthis_title  = 'WordPress+Theme+-+AdsPress';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/wordpress-theme-adspress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Choose your Blog Hosting Service</title>
		<link>http://www.blogohblog.com/how-to-choose-your-blog-hosting-service/</link>
		<comments>http://www.blogohblog.com/how-to-choose-your-blog-hosting-service/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 16:19:40 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[Bloggers]]></category>

		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[Hosting]]></category>

		<category><![CDATA[Info]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Help]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/how-to-choose-your-blog-hosting-service/</guid>
		<description><![CDATA[
Every blogger has got two basic choices when building his own blog— Either he can sign up for a hosted solution, or he can install a serve-it-yourself solution and take care of it on your own. Signing up for a hosted solution is generally easier (especially if you don’t already have your own website and [...]]]></description>
			<content:encoded><![CDATA[<div align="center" style="padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/04/choosing-the-right-blog-hosting.gif' alt='choose the right hosting for blogs' /></div>
<p>Every blogger has got two basic choices when building his own blog— Either he can sign up for a hosted solution, or he can install a serve-it-yourself solution and take care of it on your own. Signing up for a hosted solution is generally easier (especially if you don’t already have your own website and you’re not terribly interested in jumping through a hoop or two to get one), while installing a serve-it-yourself solution can be more powerful.</p>
<p>Popular hosted blogging CMS (Content Management Systems) include <a href="http://www.blogger.com">Blogger.com</a>, <a href="http://www.typepad.com">Typepad.com</a>, <a href="http://www.vox.com">Vox.com</a>, <a href="http://www.squarespace.com">Squarespace.com</a>, and others. With these services, you simply access the site, go through a registration process and, in some cases, enter your payment information to cover the monthly fee. (Some are free, some require payment.) These are hosted services - somebody else worries about the Internet server, setting up the Web addresses and all that sort of stuff. You’re given a URL for your site (mostly a sub-domain), some online tools for editing your blog (and, perhaps, for editing the template and making some minor changes to the functionality), and you’re ready to go. With a serve-it-yourself CMS (like <a href="http://www.wordpress.org">WordPress</a>) you’ll need to do a little legwork. First, you’ll need some sort of web hosting account from an Internet Service Provider. You might already have something along those lines from the Internet Service Provider that you use for Internet access, or you may need to shop for a web hosting account that will support the specifications of your blogging software.</p>
<p>In fact, there are a few things to look out for when you’ve chosen a CMS and you’re looking for an ISP to host it:</p>
<p>- Does it support the CMS’ scripting language? Most of the blogging CMSs we’ll discuss are written in a scripting language called PHP, so your web hosting account will need to offer support for PHP in order for them to run. You should read the fine print as well, because different web hosts support different versions of PHP (such as PHP 4 or PHP 5), and that can be important when you’re installing your CMS.</p>
<p>- Does your host offer database support? Again, many of the solutions we’ll discuss use MySQL databases for storing your blog entries, information about your users, and so on. If that’s true with the CMS that you choose, you’ll need to have a web hosting account that supports MySQL. In addition, you may want to check on how many databases you’re allowed to have, how large they can be, and so on. If you later decided to implement a wiki, a forum, or some other database-driven application your website, you may find that having support for just one or a few individual databases isn’t enough.</p>
<p>- Does the web hosting account offer enough storage space? Web hosting accounts will generally come with a fixed, assigned amount of storage space for your website’s files - anywhere from a few megabytes to tens or hundreds of gigabytes. Just like the hard disk in your computer, this storage space is necessary to store the documents, templates and images that you’ll use to display on your blog. So, it’s interesting to know not only how much space you have, but also whether or not that space is shared with other features offered by the web host, such as e-mail accounts, databases, and log files. You may find that a very inexpensive host gives you what sounds like an impressive amount of storage - say, 50 MB(megabytes) - but that you quickly fill it up if your website files, database, and e-mail accounts must all share that space.</p>
<p>- What is the allowed throughput? If your blog gets popular - or if you load it down with bells and whistles such as video and images that you serve up from your web hosting account - then it’s possible you’ll be sending a lot of data from your ISP to your visitors. If that’s the case, you’ll want to know what the limit it. </p>
<p>- Many web hosts offer features that will install popular blogging tools such as WordPress from within their control panels. This isn’t always advised, as the installations aren’t always the latest versions or can occasionally be a bit more difficult to customize. But, if you feel that you’re strongly allergic to the installation processes discussed for server side solutions (or if you want to try a number of different blogging tools that are offered by your host), that “one-click” install can be a convenient option.</p>
<p>As you’re blog shopping, you should consider other options such as the reputation of the hosting company, whether or not the hosting company offers the support options that you need, whether the host offers your favorite blogging package already installed or included, or whether the hosting company is actually specifically set up to host a particular blogging package (there generally are a few that specialize in a particular CMS). But just as you should plan to choose your CMS tool with an eye toward growth, it’s not a bad idea to do the same with your hosting company, just in case your blog really does take off in popularity!</p>
<p>I will recommend <a href="http://www.blogohblog.com/_/hostgator">Hostgator</a> as I have been hosting Blog Oh! Blog with them for a long time now and I have been satisfied <img src='http://www.blogohblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2Fhow-to-choose-your-blog-hosting-service%2F';
  addthis_title  = 'How+to+Choose+your+Blog+Hosting+Service';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/how-to-choose-your-blog-hosting-service/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bumper Contest : Win a Sony PlayStation 3 + A Game of your Choice</title>
		<link>http://www.blogohblog.com/bumper-contest-win-a-sony-playstation-3-a-game-of-your-choice/</link>
		<comments>http://www.blogohblog.com/bumper-contest-win-a-sony-playstation-3-a-game-of-your-choice/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 19:08:21 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[Contests]]></category>

		<category><![CDATA[Fun]]></category>

		<category><![CDATA[Console]]></category>

		<category><![CDATA[Contest]]></category>

		<category><![CDATA[PlayStation 3]]></category>

		<category><![CDATA[PS3]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/bumper-contest-win-a-sony-playstation-3-a-game-of-your-choice/</guid>
		<description><![CDATA[
Its contest time guys! Woo Hoo!
I have not yet moved from a PlayStation 2 to a PlayStation 3 myself, but I am offering a golden chance to all my blog readers to win a brand new Sony PlayStation 3 plus a free PS3 video game of your choice. For a long time, I had been [...]]]></description>
			<content:encoded><![CDATA[<div align="center" style="padding-bottom:10px;"><img src='http://www.blogohblog.com/wp-content/pop/2008/04/ps3gamecontest.jpg' alt='Playstation 3 console contest' /></div>
<p><strong>Its contest time guys! Woo Hoo!</strong></p>
<p>I have not yet moved from a PlayStation 2 to a PlayStation 3 myself, but I am offering a golden chance to all my blog readers to win a brand new <strong>Sony PlayStation 3</strong> plus a free <strong>PS3 video game</strong> of your choice. For a long time, I had been thinking of running this contest on Blog Oh! Blog but didn&#8217;t get a chance to make the post. I would also like to mention that this contest is not being sponsored by anyone..This is directly from me to all of you <img src='http://www.blogohblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> So here it is, finally!</p>
<p>The Playstation 3 console worth <strong>$399.99</strong> ships with the following features as per Amazon.com :-</p>
<p>* Internal 40GB HDD for storing your games, music, and photos<br />
* Built-in Blu-ray player<br />
* Cell Broadband Engine advanced microprocessor<br />
* SIXAXIS wireless controller (very cool!)<br />
* Screen sizes supported : 480i, 480p, 720p, 1080i, 1080p<br />
* Memory : 256MB XDR Main RAM, 256MB GDDR3 VRAM</p>
<p>Apart from the PS3 console, I will also give the winner an opportunity to choose any PS3 video game (already launched or order a pre-release) which should easily be worth $60 (most new titles that ship out are priced at $59.99). So, you will have something to play on your new console <img src='http://www.blogohblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> as soon as you win it!</p>
<p>This is a lucky draw contest which will run for one full month and the winner will be declared on <strong>May 21, 2008</strong>. Given below are the instructions and rules to enter the contest (Read carefully &#038; abide) :-</p>
<p>- Post a <strong>review</strong> of <strong>Blog Oh! Blog</strong> on your website or blog including a link to this contest.<br />
- The review should be a minimum of 200 words.<br />
- Make a comment on this contest and mention the link to your post.<br />
- Subscribe to our RSS Feed if you haven&#8217;t done so already. (To track this contest)<br />
- A single blogger is allowed only one entry to the contest.<br />
- Finally, you should NOT be an owner of a PS3 already (just kidding <img src='http://www.blogohblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ). Everyone is free to join the contest!</p>
<p>On May 21, 2008, I will draw the name of the lucky blogger who gets to win the console + game and inform him/her by e-mail. After that, I will also arrange for the shipping of the prize to the winner&#8217;s doorstep.</p>
<p>So, what are you waiting for ? Get blogging already <img src='http://www.blogohblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> and become the proud owner of a shiny PS3 console!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2Fbumper-contest-win-a-sony-playstation-3-a-game-of-your-choice%2F';
  addthis_title  = 'Bumper+Contest+%3A+Win+a+Sony+PlayStation+3+%2B+A+Game+of+your+Choice';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/bumper-contest-win-a-sony-playstation-3-a-game-of-your-choice/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why use WordPress?</title>
		<link>http://www.blogohblog.com/why-use-wordpress/</link>
		<comments>http://www.blogohblog.com/why-use-wordpress/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 05:45:19 +0000</pubDate>
		<dc:creator>Jai</dc:creator>
		
		<category><![CDATA[Blogging News]]></category>

		<category><![CDATA[Blogosphere]]></category>

		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[Info]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Community]]></category>

		<category><![CDATA[Reasons]]></category>

		<guid isPermaLink="false">http://www.blogohblog.com/why-use-wordpress/</guid>
		<description><![CDATA[
If you are new to WordPress and looking for reasons to use WordPress as a CMS (content management system) in your new website, let me give you some.
Open Source Software
WordPress is an Open Source software which allows it to be used free of cost. You can use it on any kind of personal or commercial [...]]]></description>
			<content:encoded><![CDATA[<div style="padding-bottom:10px;" align="center"><img src='http://www.blogohblog.com/wp-content/pop/2008/04/wordpress.gif' alt='WordPress' /></div>
<p>If you are new to WordPress and looking for reasons to use <a href="http://www.wordpress.org">WordPress</a> as a <a href="http://en.wikipedia.org/wiki/Content_management_system">CMS (content management system)</a> in your new website, let me give you some.</p>
<p><strong>Open Source Software</strong></p>
<p>WordPress is an <a href="http://en.wikipedia.org/wiki/Open_source">Open Source</a> software which allows it to be used free of cost. You can use it on any kind of personal or commercial website without have to pay a single dime for it. It is built on <a href="http://en.wikipedia.org/wiki/Php">PHP</a>/<a href="http://en.wikipedia.org/wiki/Mysql">MySQL</a> (which is again Open Source) and licensed under <a href="http://en.wikipedia.org/wiki/Gpl">GPL</a>.</p>
<p><strong>User Friendly</strong></p>
<p>You don&#8217;t really have to be experienced to use WordPress on your website. Nowadays most of the hosting companies provide the ability to install WordPress on your site at a single click of the mouse. The administration section is easy to navigate and its even easy to add articles/content to your website. </p>
<p><strong>Themes Support</strong></p>
<p>You will never run short of templates when using WordPress. If you don&#8217;t like the themes that come with the default installation of WordPress, you can hunt on the Internet and you will find thousands of free themes that you can download and use for your website. There are themes which can even make your website look like a regular site instead of a blog.</p>
<p><strong>Plugins Extend Functionality</strong></p>
<p>WordPress plugins allow you to do just about anything that you want and can be installed in a jiffy. For example, you want to paginate your blog posts, just look on Google and you can easily find the relevant plugin that will easily do the job for you.</p>
<p><strong>Standards Compliant</strong></p>
<p>WordPress is one software that follows all the <a href="http://en.wikipedia.org/wiki/Web_standards">Web Standards</a> and keeps your blog or website compliant to all the rules that have to be followed when running a website.</p>
<p><strong>SEO Friendly</strong></p>
<p>Search Engines have to be definitely kept in mind when building a website. WordPress uses different functions which allow it to be search engine friendly. For example sending pings to other sites, making categories, tagging your posts, use of h1/h2 tags etc.</p>
<p><strong>Large community Support</strong></p>
<p>As per recent statistics, WordPress is used on more than 1% of the websites on the Internet in the world. There is a large user community backing the development of this software. So, whenever you face any problems, you can go through all the available WordPress forums and communities and find answers for all your questions.</p>
<p>So, you see the benefits of using WordPress now? And, you can add to this list by providing your feedback in the comments.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.blogohblog.com%2Fwhy-use-wordpress%2F';
  addthis_title  = 'Why+use+WordPress%3F';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.blogohblog.com/why-use-wordpress/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
