<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Magic Bricks</title>
	<atom:link href="http://nirmalkumar.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nirmalkumar.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 27 Nov 2011 07:26:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='nirmalkumar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Magic Bricks</title>
		<link>http://nirmalkumar.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nirmalkumar.wordpress.com/osd.xml" title="Magic Bricks" />
	<atom:link rel='hub' href='http://nirmalkumar.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Type of Style Sheets</title>
		<link>http://nirmalkumar.wordpress.com/2006/12/29/type-of-style-sheets/</link>
		<comments>http://nirmalkumar.wordpress.com/2006/12/29/type-of-style-sheets/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 06:50:19 +0000</pubDate>
		<dc:creator>Nirmal Kumar</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nirmalkumar.wordpress.com/2006/12/29/type-of-style-sheets/</guid>
		<description><![CDATA[Style sheet can be included in HTML document in 3 ways,namely 1.External Style Sheets. 2.Internal Style Sheets. 3.Inline Styles. External Style sheets In External Style Sheets , the styles are stored in a separate file and then that file is included in the HTML Page. You might be wondering what are styles(will be seen later), [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=86&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Style sheet can be included in HTML document in 3 ways,namely</p>
<p>1.External Style Sheets.<br />
2.Internal Style Sheets.<br />
3.Inline Styles.</p>
<p><strong>External Style sheets</strong></p>
<p>In External Style Sheets , the styles are stored in a separate file and then that file is included in the HTML Page. You might be wondering what are styles(will be seen later), but for now just assume that each tag comes with styles. The external file(in which styles are stored)  should be saved with the extension .css. Then that CSS file should be included in the HTML page using the &lt;LINK&gt; tag.</p>
<p><i>Example :</i></p>
<p>&lt;head&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221;<br />
href=&#8221;mystyle.css&#8221; /&gt;<br />
&lt;/head&gt;</p>
<p><i>Explanation for the example :</i></p>
<p>rel = &#8220;stylesheet&#8221; tells that the relation of the link is stylesheet.rel can also be assigned to copyright,content,chapters etc.</p>
<p>type tells the type of link . text/css says stylesheet. type can also be assigned to text/javascript,text/vbscript etc.</p>
<p>href tells the path of the css file.If its in the same folder as that of HTML page then it is enough t0 give the name of the CSS file along</p>
<p>with the extension.If its in different folder other than the folder in which the HTML page is , then the relative path should be given . For example href =&#8221;../[stylesheet folder name]/[filename].css&#8221;</p>
<p><font color="red">Note :</font></p>
<p>1.The LINK tag should be used in the &lt;HEAD&gt; tag.</p>
<p><strong>Internal Style Sheets</strong></p>
<p>In Internal Stylesheets , the styles for the tags are specified in the head section itself using the style tag. styles are not stored in a separate file.</p>
<p><i>Example :</i></p>
<p>&lt;head&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
hr {color: sienna}<br />
p {margin-left: 20px}<br />
body {background-image: url(&#8220;images/back40.gif&#8221;)}<br />
&lt;/style&gt;<br />
&lt;/head&gt;</p>
<p><i>Explanation for the example :</i></p>
<p>type tells the type of link . text/css says stylesheet. type can also be assigned to text/javascript,text/vbscript etc.</p>
<p>hr {color: sienna} tells that any hr tag used should have the color sienna. Similarly we can set the syles for the other tags.</p>
<p><font color="red">Note :</font></p>
<p>1.The STYLE tag should be used in the &lt;HEAD&gt; tag.</p>
<p><strong>Inline Styles</strong></p>
<p>In case of Inline Style Sheets the styles for the specific tags are given in the tag itself using the style attribute.</p>
<p><i>Example :</i></p>
<p>&lt;p style=&#8221;color: sienna; margin-left: 20px&#8221;&gt;<br />
This is a paragraph<br />
&lt;/p&gt;</p>
<p><i>Explanation for the example :</i></p>
<p>style=&#8221;color: sienna; margin-left: 20px&#8221; specifies that this &lt;p&gt; tag should use color as sienna and left margin should be 20 px.</p>
<p><strong>Priority of the Styles :</strong></p>
<p>1.Inline styles.<br />
2.Internal Style Sheets.<br />
3.External Style Sheets.<br />
4.Browser Default Styles.</p>
<p>In order to avoid conflict of styles used the above priority is followed.</p>
<p><font color="red">Note:</font><br />
1. We see that the fourth priority if for the Browser defaults. Thats why we see that different browsers render differently(Each Browser uses its own default style)</p>
<p><strong>Standards : </strong></p>
<p>Its better to use External Style Sheets that Internal and Inline because to use common styles across multiple pages the same Style Sheet can be used . But thats not always the case . When you want to apply a particular style specific for a portion of the page Inline or Internal will be preferred.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nirmalkumar.wordpress.com/86/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nirmalkumar.wordpress.com/86/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirmalkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirmalkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirmalkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirmalkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirmalkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirmalkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirmalkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirmalkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirmalkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirmalkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirmalkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirmalkumar.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirmalkumar.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirmalkumar.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=86&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirmalkumar.wordpress.com/2006/12/29/type-of-style-sheets/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b54fa527df294be7223076c522e9420?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nirmal Kumar</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Use On-Screen KeyBoard</title>
		<link>http://nirmalkumar.wordpress.com/2006/12/29/how-to-use-on-screen-keyboard/</link>
		<comments>http://nirmalkumar.wordpress.com/2006/12/29/how-to-use-on-screen-keyboard/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 06:01:59 +0000</pubDate>
		<dc:creator>Nirmal Kumar</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips and Tricks in XP]]></category>

		<guid isPermaLink="false">http://nirmalkumar.wordpress.com/2006/12/29/how-to-use-on-screen-keyboard/</guid>
		<description><![CDATA[Want to use an on screen keyboard? Well it is this simple &#8211; Click on the start button and select run. Then type in osk in the box and click OK.A KeyBoard appears which you can use with mouse.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=85&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Want to use an on screen keyboard? Well it is this simple &#8211; Click on the start button and select run. Then type in osk in the box and click OK.A KeyBoard appears which you can use with mouse.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nirmalkumar.wordpress.com/85/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nirmalkumar.wordpress.com/85/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirmalkumar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirmalkumar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirmalkumar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirmalkumar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirmalkumar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirmalkumar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirmalkumar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirmalkumar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirmalkumar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirmalkumar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirmalkumar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirmalkumar.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirmalkumar.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirmalkumar.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=85&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirmalkumar.wordpress.com/2006/12/29/how-to-use-on-screen-keyboard/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b54fa527df294be7223076c522e9420?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nirmal Kumar</media:title>
		</media:content>
	</item>
		<item>
		<title>How to turn CD Autorun off</title>
		<link>http://nirmalkumar.wordpress.com/2006/12/29/how-to-turn-cd-autorun-off/</link>
		<comments>http://nirmalkumar.wordpress.com/2006/12/29/how-to-turn-cd-autorun-off/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 05:19:21 +0000</pubDate>
		<dc:creator>Nirmal Kumar</dc:creator>
				<category><![CDATA[Tips and Tricks in XP]]></category>

		<guid isPermaLink="false">http://nirmalkumar.wordpress.com/2006/12/29/how-to-turn-cd-autorun-off/</guid>
		<description><![CDATA[1) Click Start, Run and enter GPEDIT.MSC 2) Go to Computer Configuration, Administrative Templates, System. 3) Locate the entry for Turn autoplay off and modify it as you desire.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=83&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1) Click Start, Run and enter GPEDIT.MSC</p>
<p>2) Go to Computer Configuration, Administrative Templates, System.</p>
<p>3) Locate the entry for Turn autoplay off and modify it as you desire.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nirmalkumar.wordpress.com/83/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nirmalkumar.wordpress.com/83/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirmalkumar.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirmalkumar.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirmalkumar.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirmalkumar.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirmalkumar.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirmalkumar.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirmalkumar.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirmalkumar.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirmalkumar.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirmalkumar.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirmalkumar.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirmalkumar.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirmalkumar.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirmalkumar.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=83&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirmalkumar.wordpress.com/2006/12/29/how-to-turn-cd-autorun-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b54fa527df294be7223076c522e9420?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nirmal Kumar</media:title>
		</media:content>
	</item>
		<item>
		<title>How to make folder private</title>
		<link>http://nirmalkumar.wordpress.com/2006/12/29/how-to-make-folder-private/</link>
		<comments>http://nirmalkumar.wordpress.com/2006/12/29/how-to-make-folder-private/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 04:58:15 +0000</pubDate>
		<dc:creator>Nirmal Kumar</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nirmalkumar.wordpress.com/2006/12/29/how-to-make-folder-private/</guid>
		<description><![CDATA[•Open My Computer •Double-click the drive where Windows is installed (usually drive (C:), unless you have more than one drive on your computer). •If the contents of the drive are hidden, under System Tasks, click Show the contents of this drive. •Double-click the Documents and Settings folder. •Double-click your user folder. •Right-click any folder in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=81&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>•Open My Computer<br />
•Double-click the drive where Windows is installed (usually drive (C:), unless you have more than one drive on your computer).<br />
•If the contents of the drive are hidden, under System Tasks, click Show the contents of this drive.<br />
•Double-click the Documents and Settings folder.<br />
•Double-click your user folder.<br />
•Right-click any folder in your user profile, and then click Properties.<br />
•On the Sharing tab, select the Make this folder private so that only I have access to it check box.</p>
<p><font color="red">Note:</font></p>
<p>•To open My Computer, click Start, and then click My Computer.<br />
•This option is only available for folders included in your user profile. Folders in your user profile include My Documents and its subfolders, Desktop, Start Menu, Cookies, and Favorites. If you do not make these folders private, they are available to everyone who uses your computer.<br />
•When you make a folder private, all of its subfolders are private as well. For example, when you make My Documents private, you also make My Music and My Pictures private. When you share a folder, you also share all of its subfolders unless you make them private.<br />
<font color="red">*</font>You cannot make your folders private if your drive is not formatted as NTFS.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nirmalkumar.wordpress.com/81/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nirmalkumar.wordpress.com/81/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirmalkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirmalkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirmalkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirmalkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirmalkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirmalkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirmalkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirmalkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirmalkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirmalkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirmalkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirmalkumar.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirmalkumar.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirmalkumar.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=81&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirmalkumar.wordpress.com/2006/12/29/how-to-make-folder-private/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b54fa527df294be7223076c522e9420?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nirmal Kumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Evolution of Cascading Style Sheets(CSS)</title>
		<link>http://nirmalkumar.wordpress.com/2006/12/28/evolution-of-cascading-style-sheetscss/</link>
		<comments>http://nirmalkumar.wordpress.com/2006/12/28/evolution-of-cascading-style-sheetscss/#comments</comments>
		<pubDate>Thu, 28 Dec 2006 10:54:19 +0000</pubDate>
		<dc:creator>Nirmal Kumar</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nirmalkumar.wordpress.com/2006/12/28/evolution-of-cascading-style-sheetscss/</guid>
		<description><![CDATA[The Web has come a long way from the all-Text beginning.In the beginning stage, Web used Images and wrapped the text around them and then,as the importance for the presentation increased new HTML tags and attributes were introduced for the presentation purpose.Also the popular browsers of that time namely Internet Explorer and Netscape Navigator(due to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=79&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Web has come a long way from the all-Text beginning.In the beginning stage, Web used Images and wrapped the text around them and then,as the importance for the presentation increased new HTML tags and attributes were introduced for the presentation purpose.Also the popular browsers of that time namely Internet Explorer and Netscape Navigator(due to mere competition) provided various ways to support the new tags.</p>
<p>Although all this were appreciated it did came with a problem. HTML was basically invented to display the content to the user but now it was used for presentation purpose. And also it became difficult to maintain larger Websites. So World Wide Web Consortium(W3C) came with Cascading Style Sheets(CSS) as a solution.</p>
<p>CSS separated the content from the presentation and it simplified the way of developing websites. W3C released its first specification of CSS in 1996. The version 4 browsers of Navigator and Internet Explorer started supporting CSS. And at present it is widely adopted for the presentation.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nirmalkumar.wordpress.com/79/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nirmalkumar.wordpress.com/79/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirmalkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirmalkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirmalkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirmalkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirmalkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirmalkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirmalkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirmalkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirmalkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirmalkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirmalkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirmalkumar.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirmalkumar.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirmalkumar.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=79&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirmalkumar.wordpress.com/2006/12/28/evolution-of-cascading-style-sheetscss/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b54fa527df294be7223076c522e9420?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nirmal Kumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Tips &amp; Tricks : Windows XP run commands</title>
		<link>http://nirmalkumar.wordpress.com/2006/12/27/tips-tricks-windows-xp-run-commands/</link>
		<comments>http://nirmalkumar.wordpress.com/2006/12/27/tips-tricks-windows-xp-run-commands/#comments</comments>
		<pubDate>Wed, 27 Dec 2006 10:06:15 +0000</pubDate>
		<dc:creator>Nirmal Kumar</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nirmalkumar.wordpress.com/2006/12/27/tips-tricks-windows-xp-run-commands/</guid>
		<description><![CDATA[Run command is very useful, but sometimes it is forgotten. Use it sometimes and you will find how powerful is run command.Here&#8217;s the list of 117 run commands Accessibility Controls &#8211; access.cpl Accessibility Wizard &#8211; accwiz Add Hardware Wizard &#8211; hdwwiz.cpl Add/Remove Programs  - appwiz.cpl Administrative Tools &#8211; control admintools Automatic Updates &#8211; wuaucpl.cpl Bluetooth Transfer Wizard &#8211; fsquirt Calculator &#8211; calc Certificate Manager &#8211; certmgr.msc [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=78&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>Run command</em> is very useful, but sometimes it is forgotten. Use it sometimes and you will find how powerful is <em>run command</em>.Here&#8217;s the list of 117 run commands</p>
<ol>
<li>Accessibility Controls &#8211; access.cpl</li>
<li> Accessibility Wizard &#8211;   accwiz</li>
<li> Add Hardware Wizard &#8211; hdwwiz.cpl</li>
<li>Add/Remove Programs  -  appwiz.cpl</li>
<li>Administrative Tools &#8211; control admintools</li>
<li> Automatic Updates &#8211; wuaucpl.cpl</li>
<li><span class="fullpost">Bluetooth Transfer Wizard &#8211; fsquirt<br />
</span></li>
<li>Calculator &#8211; calc</li>
<li>Certificate Manager &#8211; certmgr.msc</li>
<li>Character Map &#8211; charmap</li>
<li>Check Disk Utility &#8211; chkdsk</li>
<li>Clipboard Viewer &#8211; clipbrd</li>
<li>Command Prompt &#8211; cmd</li>
<li>Component Services &#8211; dcomcnfg</li>
<li>Computer Management &#8211; compmgmt.msc</li>
<li>Control Panel &#8211;   control</li>
<li> Date and Time Properties &#8211;  timedate.cpl</li>
<li>DDE Shares &#8211; ddeshare</li>
<li>Device Manager &#8211; devmgmt.msc</li>
<li>Direct X Troubleshooter &#8211; dxdiag</li>
<li>Disk Cleanup Utility &#8211; cleanmgr</li>
<li>Disk Defragment &#8211; dfrg.msc</li>
<li>Disk Management &#8211; diskmgmt.msc</li>
<li>Disk Partition Manager &#8211; diskpart</li>
<li>Display Properties &#8211; control desktop</li>
<li>Display Properties &#8211; desk.cpl</li>
<li>Dr. Watson System Troubleshooting Utility &#8211; drwtsn32</li>
<li>Driver Verifier Utility &#8211; verifier</li>
<li>Event Viewer &#8211; eventvwr.msc</li>
<li>Files and Settings Transfer Tool &#8211;   migwiz</li>
<li> File Signature Verification Tool &#8211; sigverif</li>
<li>Findfast &#8211; findfast.cpl</li>
<li>Firefox &#8211;   firefox</li>
<li> Folders Properties &#8211; control folders</li>
<li>Fonts &#8211; control fonts</li>
<li>Fonts Folder &#8211; fonts</li>
<li>Free Cell Card Game &#8211; freecell</li>
<li>Game Controllers &#8211;  joy.cpl</li>
<li>Group Policy Editor (for xp professional) &#8211; gpedit.msc</li>
<li>Hearts Card Game &#8211; mshearts</li>
<li>Help and Support &#8211;   helpctr</li>
<li> HyperTerminal &#8211;   hypertrm</li>
<li> Iexpress Wizard &#8211; iexpress</li>
<li>Indexing Service &#8211; ciadv.msc</li>
<li>Internet Connection Wizard &#8211;   icwconn1</li>
<li> Internet Explorer &#8211;   iexplore</li>
<li> Internet Properties &#8211;  inetcpl.cpl</li>
<li>Keyboard Properties &#8211; control keyboard</li>
<li>Local Security Settings &#8211; secpol.msc</li>
<li>Local Users and Groups &#8211; lusrmgr.msc</li>
<li>Logs You Out Of Windows &#8211; logoff</li>
<li>Malicious Software Removal Tool &#8211;   mrt</li>
<li> Microsoft Chat &#8211; winchat</li>
<li>Microsoft Movie Maker &#8211;   moviemk</li>
<li> Microsoft Paint &#8211;  mspaint</li>
<li> Microsoft Syncronization Tool &#8211;   mobsync</li>
<li> Minesweeper Game &#8211; winmine</li>
<li>Mouse Properties &#8211; control mouse</li>
<li>Mouse Properties &#8211; main.cpl</li>
<li>Netmeeting &#8211;   conf</li>
<li> Network Connections &#8211; control netconnections</li>
<li>Network Connections &#8211; ncpa.cpl</li>
<li>Network Setup Wizard &#8211; netsetup.cpl</li>
<li>Notepad notepad</li>
<li>Object Packager &#8211; packager</li>
<li>ODBC Data Source Administrator &#8211; odbccp32.cpl</li>
<li>On Screen Keyboard &#8211; osk</li>
<li>Outlook Express &#8211; msimn</li>
<li> Paint &#8211;   pbrush</li>
<li> Password Properties &#8211; password.cpl</li>
<li>Performance Monitor &#8211; perfmon.msc</li>
<li>Performance Monitor &#8211; perfmon</li>
<li>Phone and Modem Options &#8211; telephon.cpl</li>
<li>Phone Dialer &#8211;  dialer</li>
<li> Pinball Game &#8211;  pinball</li>
<li> Power Configuration &#8211; powercfg.cpl</li>
<li>Printers and Faxes &#8211; control printers</li>
<li>Printers Folder &#8211; printers</li>
<li>Regional Settings  -  intl.cpl</li>
<li>Registry Editor &#8211; regedit</li>
<li>Registry Editor &#8211; regedit32</li>
<li>Remote Access Phonebook &#8211;  rasphone</li>
<li> Remote Desktop &#8211; mstsc</li>
<li>Removable Storage &#8211; ntmsmgr.msc</li>
<li>Removable Storage Operator Requests &#8211; ntmsoprq.msc</li>
<li>Resultant Set of Policy (for xp professional) &#8211; rsop.msc</li>
<li>Scanners and Cameras &#8211; sticpl.cpl</li>
<li>Scheduled Tasks &#8211; control schedtasks</li>
<li>Security Center &#8211; wscui.cpl</li>
<li>Services &#8211; services.msc</li>
<li>Shared Folders &#8211; fsmgmt.msc</li>
<li>Shuts Down Windows &#8211; shutdown</li>
<li>Sounds and Audio &#8211; mmsys.cpl</li>
<li>Spider Solitare Card Game &#8211; spider</li>
<li>SQL Client Configuration &#8211; cliconfg</li>
<li>System Configuration Editor &#8211; sysedit</li>
<li>System Configuration Utility &#8211; msconfig</li>
<li>System Information &#8211;   msinfo32</li>
<li> System Properties &#8211; sysdm.cpl</li>
<li>Task Manager &#8211; taskmgr</li>
<li>TCP Tester &#8211;  tcptest</li>
<li> Telnet Client &#8211; telnet</li>
<li> User Account Management &#8211; nusrmgr.cpl</li>
<li>Utility Manager &#8211; utilman</li>
<li>Windows Address Book &#8211;  wab</li>
<li> Windows Address Book Import Utility &#8211;   wabmig</li>
<li> Windows Explorer &#8211;  explorer</li>
<li> Windows Firewall &#8211; firewall.cpl</li>
<li>Windows Magnifier &#8211; magnify</li>
<li>Windows Management Infrastructure &#8211; wmimgmt.msc</li>
<li>Windows Media Player &#8211;  wmplayer</li>
<li>Windows Messenger &#8211;   msmsgs</li>
<li> Windows System Security Tool &#8211; syskey</li>
<li>Windows Update Launches &#8211; wupdmgr</li>
<li>Windows Version &#8211;  winver</li>
<li> Windows XP Tour Wizard &#8211; tourstart</li>
<li>Wordpad &#8211; write</li>
</ol>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nirmalkumar.wordpress.com/78/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nirmalkumar.wordpress.com/78/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirmalkumar.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirmalkumar.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirmalkumar.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirmalkumar.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirmalkumar.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirmalkumar.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirmalkumar.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirmalkumar.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirmalkumar.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirmalkumar.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirmalkumar.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirmalkumar.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirmalkumar.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirmalkumar.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=78&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirmalkumar.wordpress.com/2006/12/27/tips-tricks-windows-xp-run-commands/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b54fa527df294be7223076c522e9420?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nirmal Kumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Corporate Lesson</title>
		<link>http://nirmalkumar.wordpress.com/2006/12/27/corporate-lesson/</link>
		<comments>http://nirmalkumar.wordpress.com/2006/12/27/corporate-lesson/#comments</comments>
		<pubDate>Wed, 27 Dec 2006 05:58:20 +0000</pubDate>
		<dc:creator>Nirmal Kumar</dc:creator>
				<category><![CDATA[Joke]]></category>

		<guid isPermaLink="false">http://nirmalkumar.wordpress.com/2006/12/27/corporate-lesson/</guid>
		<description><![CDATA[A crow was sitting on a tree, doing nothing all day. A small rabbit saw the crow, and asked him, &#8220;Can I also sit like you and do nothing all day long?&#8221; The crow answered: &#8220;Sure, why not.&#8221; So, the rabbit sat on the ground below the crow, and rested. All of a sudden, a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=76&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A crow was sitting on a tree, doing nothing all day. A small rabbit saw the crow, and asked him, &#8220;Can I also sit like you and do nothing all day long?&#8221; The crow answered: &#8220;Sure, why not.&#8221; So, the rabbit sat on the ground below the crow, and rested. All of a sudden, a fox appeared, jumped on the rabbit and ate it.</p>
<p>Moral of the story is:</p>
<p>To be sitting and doing nothing, you must be sitting very, very high up.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nirmalkumar.wordpress.com/76/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nirmalkumar.wordpress.com/76/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirmalkumar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirmalkumar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirmalkumar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirmalkumar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirmalkumar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirmalkumar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirmalkumar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirmalkumar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirmalkumar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirmalkumar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirmalkumar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirmalkumar.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirmalkumar.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirmalkumar.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=76&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirmalkumar.wordpress.com/2006/12/27/corporate-lesson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b54fa527df294be7223076c522e9420?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nirmal Kumar</media:title>
		</media:content>
	</item>
		<item>
		<title>Jesus and Devil</title>
		<link>http://nirmalkumar.wordpress.com/2006/12/27/jesus-and-devil/</link>
		<comments>http://nirmalkumar.wordpress.com/2006/12/27/jesus-and-devil/#comments</comments>
		<pubDate>Wed, 27 Dec 2006 05:55:21 +0000</pubDate>
		<dc:creator>Nirmal Kumar</dc:creator>
				<category><![CDATA[Joke]]></category>

		<guid isPermaLink="false">http://nirmalkumar.wordpress.com/2006/12/27/jesus-and-devil/</guid>
		<description><![CDATA[One day, Jesus and the Devil were both working on their computers. Jesus was typing away. The Devil was typing away. Suddenly a huge blackout filled heaven and hell. When the lights came back on, Jesus picked up right where he left off, but the Devil&#8217;s screen was black. Satan says, &#8220;How could this happen? [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=75&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One day, Jesus and the Devil were both working on their computers. Jesus was typing away. The Devil was typing away.</p>
<p>Suddenly a huge blackout filled heaven and hell. When the lights came back on, Jesus picked up right where he left off, but the Devil&#8217;s screen was black. Satan says, &#8220;How could this happen? I did everything Jesus did!&#8221;</p>
<p>Then one person in Hell says, &#8220;No, Jesus Saves.&#8221;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nirmalkumar.wordpress.com/75/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nirmalkumar.wordpress.com/75/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirmalkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirmalkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirmalkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirmalkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirmalkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirmalkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirmalkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirmalkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirmalkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirmalkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirmalkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirmalkumar.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirmalkumar.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirmalkumar.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirmalkumar.wordpress.com&amp;blog=620643&amp;post=75&amp;subd=nirmalkumar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirmalkumar.wordpress.com/2006/12/27/jesus-and-devil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1b54fa527df294be7223076c522e9420?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nirmal Kumar</media:title>
		</media:content>
	</item>
	</channel>
</rss>
