<?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>CSS Tutorials and CSS Articles &#187; CSS Load</title>
	<atom:link href="http://www.cssmaster.co.uk/tag/css-load/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cssmaster.co.uk</link>
	<description>CSS tutorials and articles</description>
	<lastBuildDate>Tue, 02 Feb 2010 01:43:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Inserting CSS</title>
		<link>http://www.cssmaster.co.uk/inserting-css</link>
		<comments>http://www.cssmaster.co.uk/inserting-css#comments</comments>
		<pubDate>Thu, 14 Jan 2010 23:30:46 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Load]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=17</guid>
		<description><![CDATA[You can Insert CSS into your HTML document in three simple ways:

External stylesheet
Internal stylesheet
Inline styling

Let&#8217;s begin with the cleanest way, the external stylesheet.  This is done using a CSS file, the usual file extension for this is .css, but any plain text file works.  The most common way of inserting from an external [...]]]></description>
			<content:encoded><![CDATA[<p>You can <strong>Insert CSS</strong> into your HTML document in three simple ways:</p>
<ul>
<li>External stylesheet</li>
<li>Internal stylesheet</li>
<li>Inline styling</li>
</ul>
<p>Let&#8217;s begin with the cleanest way, the <strong>external stylesheet</strong>.  This is done using a CSS file, the usual file extension for this is .css, but any plain text file works.  The most common way of inserting from an external stylesheet is with the HTML link element:<br />
<code>&lt;link href="stylesheet.css" rel="stylesheet" type="text/css" /&gt;</code></p>
<p>An <strong>internal stylesheet</strong> is simply putting your CSS inside the HTML document, usually within <code>&lt;head&gt;</code>.  Let&#8217;s see the exmaple:<br />
<code>&lt;style type="text/css"&gt;<br />
/* Your CSS here */<br />
h1{ color:red; }<br />
&lt;/style&gt;</code></p>
<p><strong>Inline styling</strong> is very simple to do, but if used too foten can make your documents overly complex, and defeats the point of <strong>CSS</strong>, you should try and avoid inline styling wherever you can.  Here&#8217;s an example of it:<br />
<code>&lt;h1 style="color:red;"&gt;CSS is a good thing!&lt;/h1&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/inserting-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

