<?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/"
	>

<channel>
	<title>noob2geek &#187; CSS Tutorials</title>
	<atom:link href="http://www.noob2geek.com/category/css-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noob2geek.com</link>
	<description>Today&#039;s noobs are tomorrow&#039;s geeks!</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:27:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Text Shadow Effects in CSS3</title>
		<link>http://www.noob2geek.com/css-tutorials/css3-examples/text-shadow-effects-css3/</link>
		<comments>http://www.noob2geek.com/css-tutorials/css3-examples/text-shadow-effects-css3/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 15:13:31 +0000</pubDate>
		<dc:creator>Santhosh</dc:creator>
				<category><![CDATA[CSS3 Examples]]></category>
		<category><![CDATA[css3 effects]]></category>
		<category><![CDATA[css3 text shadow]]></category>
		<category><![CDATA[css3 tricks]]></category>
		<category><![CDATA[text shadow in css3]]></category>

		<guid isPermaLink="false">http://noob2geek.com/?p=225</guid>
		<description><![CDATA[CSS3 allows you to apply shadows to text and eliminates the need of using Photoshop to do it. It is very simple and all you have to do is just add a new property to an element. It&#8217;s: text-shadow: 2px 2px 2px #333; This code will apply a gray show to the text. This effect [...]]]></description>
			<content:encoded><![CDATA[<p>CSS3 allows you to apply shadows to text and eliminates the need of using Photoshop to do it. It is very simple and all you have to do is just add a new property to an element. It&#8217;s: </p>
<p><code>text-shadow: 2px 2px 2px #333;</code></p>
<p>This code will apply a gray show to the text. This effect can be seen on Safari 3 and above, Opera 9.5+, Firefox 3.1+, Konqueror and iCab. </p>
<p>If you are using one of the above mentioned browser, you must be able to see the shadow behind the title of this post. If not, here&#8217;s a small preview:<br />
<img src="http://i44.tinypic.com/2hphel2.jpg" alt="css3 text shadow" /></p>
<p>Some explanation about this property:</p>
<p><code>2px 2px 2px</code> </p>
<p>&#8230;will add shadow in right-down direction. </p>
<p><code>0 2px 2px</code></p>
<p>..adds shadow in downwards direction.</p>
<p><code>2px 0 2px</code></p>
<p>&#8230;adds shadow towards right.</p>
<p>And as far shade is concerned, if your background is light in color, use the following colors: #000 or #333 or #666 or #999. This depends on the background color and as well as the color of the text to which you are applying the effect.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.noob2geek.com/css-tutorials/css3-examples/text-shadow-effects-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to link CSS to xHTML</title>
		<link>http://www.noob2geek.com/css-tutorials/link-css-xhtml/</link>
		<comments>http://www.noob2geek.com/css-tutorials/link-css-xhtml/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 02:20:41 +0000</pubDate>
		<dc:creator>Santhosh</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[external stylesheet]]></category>
		<category><![CDATA[link css]]></category>
		<category><![CDATA[stylesheet]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://noob2geek.com/?p=114</guid>
		<description><![CDATA[This tutorial teaches you on how to link an external CSS file in an xHTML file. By creating and linking an external CSS file, it allows you to keep all your CSS code separately out in a different file. This eliminates the clutter in your HTML file. This also keeps your content separately from design. [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">This tutorial teaches you on how to link an external CSS file in an xHTML file. By creating and linking an external CSS file, it allows you to keep all your CSS code separately out in a different file. This eliminates the clutter in your HTML file. This also keeps your content separately from design. An external CSS file will have <strong>.css</strong> as extension.</p>
<p class="MsoNormal">To link an external CSS file, all you have to do is just refer that file in your HTML / xHTML file, so that the HTML file fetches the CSS code and builds the elements on the page.</p>
<p class="MsoNormal">To refer an external CSS file, you have to place a code within &lt;/head&gt; tag.</p>
<p class="MsoNormal">If your style.css file resides is in the same path as that of your HTML file, then use this code:</p>
<p><code>&lt;link rel="stylesheet" type="text/css" href="style.css" media="screen" /&gt;</code></p>
<p><span id="more-114"></span></p>
<p class="MsoNormal">If your style.css file is in some other folder, say like images. You have to specify the path in the code:</p>
<p><code>&lt;link rel="stylesheet" type="text/css" href="images/style.css" media="screen" /&gt;</code></p>
<p class="MsoNormal">Some explanation might help you understand the code well:</p>
<ul>
<li><strong>link rel</strong> – stands for link relationship. Assigning “stylesheet” as the link rel will make HTML file to understand its an stylesheet or also known as file with CSS code.</li>
<li><strong>type</strong> &#8211; <span> </span>lets you specify the language. Here “text/stylesheet” is used to specify “style sheet language&#8221;</li>
<li><strong>href </strong>- is used to link to an external stylesheet and to point out the location of the file. Here style.css is the name of your external stylesheet.</li>
<li><strong>media</strong> &#8211; lets you specify the type of device on which your design will appear. This is meant for media specific. There are many other types, most commonly used are:</li>
</ul>
<ol>
<li><strong>all</strong> – Meant for all kinds of devices.</li>
<li><strong>print</strong> – This is used for page media. You get to see how you design appears before you print via print preview.</li>
<li><strong>handheld</strong> – for cellphones, pda etc.</li>
</ol>
<p class="MsoNormal">…and there are many more like <strong>aural</strong> for speech, <strong>projection</strong> for projectors,<strong> tv </strong>for television, <strong>braille</strong> for tactile feedback devices, <strong>tty</strong> for portable devices with display, <strong>embossed</strong> for braille printers.</p>
<p class="MsoNormal">Now, you are capable of linking an external stylesheet to your HTML file. Enjoy the fun of CSS.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.noob2geek.com/css-tutorials/link-css-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
