<?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 learner guide</title>
	<atom:link href="http://csslearner.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://csslearner.com</link>
	<description></description>
	<lastBuildDate>Sun, 31 May 2009 15:22:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Integration of external files in CSS</title>
		<link>/?p=7</link>
		<comments>/?p=7#comments</comments>
		<pubDate>Sun, 31 May 2009 15:22:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://csslearner.com/?p=7</guid>
		<description><![CDATA[There are 2 different ways how to connect an external CSS file with an HTML file. The external file can be within a Style range &#8211; this example looks like this: &#60;style type=&#8221;text/css&#8221;&#62; &#60;!&#8211; @import url(style.css); //&#8211;&#62; &#60;/style&#62; The syntax of @import url(); binds in the parenthesis indicated CSS file. It is subject to general [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">There are 2 different ways how to connect an external CSS file with an HTML file. The external file can be within a Style range &#8211; this example looks like this:</p>
<p style="text-align: justify;">&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
@import url(style.css);<br />
//&#8211;&gt;<br />
&lt;/style&gt;</p>
<p style="text-align: justify;">The syntax of @import url(); binds in the parenthesis indicated CSS file. It is subject to general rules for absolute and relative file paths. This information can also be within a CSS file to make another CSS file involved. Netscape 4 sees this syntax, unlike almost all other CSS-capable browsers. Therefore, it can be also used as a browser switch to Netscape 4 by using CSS commands to use.</p>
<p style="text-align: justify;">The HTML syntax to embed external CSS files, use the Link tag. An example:</p>
<p style="text-align: justify;">&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;style.css&#8221;&gt;</p>
<p style="text-align: justify;">The attribute href specifies the path to the CSS file, but again the general rules for valid paths. In addition, the attributes rel and type attributes duty. By rel is the browser reported that it is a stylesheet that is to be included (the item link can also be used for other purposes), by the attribute type is the mime type specified.</p>
]]></content:encoded>
			<wfw:commentRss>http://csslearner.com/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS Direct Formatting</title>
		<link>/?p=5</link>
		<comments>/?p=5#comments</comments>
		<pubDate>Wed, 27 May 2009 18:19:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://csslearner.com/?p=5</guid>
		<description><![CDATA[CSS formatting directly to an individual HTML tag to apply the attribute style in the HTML tag. An example: &#60;h1 style=&#8221;color:#0000FF;&#8221;&#62;Example&#60;/h1&#62; This statement is the headline. Note that it is simply the opening HTML tag addition the style attribute, and a corresponding CSS specification behind. Large File Format in the head area For further information [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">CSS formatting directly to an individual HTML tag to apply the attribute style in the HTML tag. An example:</p>
<p>&lt;h1 style=&#8221;color:#0000FF;&#8221;&gt;Example&lt;/h1&gt;</p>
<p>This statement is the headline. Note that it is simply the opening HTML tag addition the style attribute, and a corresponding CSS specification behind.</p>
<p><strong>Large File Format in the head area </strong></p>
<p>For further information on file, use the head of an HTML file, i.e. between &lt;head&gt; and &lt;/head&gt; the tag &lt;style&gt; noted. Behind all of this HTML file current information and then the field again with &lt;/style&gt; closed. All information given here apply to the entire HTML file. An example:</p>
<p>&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
p { font-family:Arial; }<br />
//&#8211;&gt;<br />
&lt;/style&gt;</p>
<p>The attribute &#8220;type&#8221; is a mandatory attribute for the opening style tag. Note If you use CSS so in each case: &lt;style type=&#8221;text/CSS&#8221;&gt; As you can see, I have in this example, the actual CSS values again in an HTML comment inserted &lt;!&#8211; //&#8211;&gt; This is to prevent very old browser, the element &lt;style&gt; do not know, accidentally, the CSS data as output on the screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://csslearner.com/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Properties of CSS Fonts</title>
		<link>/?p=3</link>
		<comments>/?p=3#comments</comments>
		<pubDate>Mon, 25 May 2009 10:54:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://csslearner.com/?p=3</guid>
		<description><![CDATA[Font Size: The property &#8216;font-size&#8217; The font size is determined by the property font-size set. You can create many different units (eg pixels and percentages) to the sizes described. In this tutorial we will look at the most frequently used and most suitable units. Examples are: h1 ( font-size: 30px; ) h2 ( font-size: 12cm; [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Font Size: The property &#8216;font-size&#8217;</strong></p>
<p>The font size is determined by the property font-size set. You can create many different units (eg pixels and percentages) to the sizes described. In this tutorial we will look at the most frequently used and most suitable units.</p>
<p>Examples are:</p>
<p>h1 (<br />
font-size: 30px;<br />
)</p>
<p>h2 (<br />
font-size: 12cm;<br />
)</p>
<p>h3 (<br />
font-size: 120%;<br />
)</p>
<p>p (<br />
font-size: 1em;<br />
)</p>
<p>There is a fundamental difference between the four above-mentioned units. &#8216;px&#8217; and &#8216;pt&#8217; bring the text to an absolute size, while &#8216;%&#8217; and &#8216;em&#8217; allows the user to specify the size to change as he or she likes. Many Internet users are disabled, older, visually impaired or &#8216;suffer&#8217; from the poor quality of their monitor. To make your website accessible for everyone, you should use modifiable units, such as&#8217;% &#8216;or&#8217; em &#8216;.</p>
<p>The output size of the text in Mozilla Firefox and Internet Explorer can be changed by selecting proper option from the menu. Try it now &#8211; nice gimmick don&#8217;t you think?</p>
<p><strong>Combination of attributes: the property &#8216;font&#8217;</strong></p>
<p>Using the font attribute can describe any font properties in a single attribute.</p>
<p>For example, imagine the following four lines of code that could change the font properties for &lt;p&gt;:</p>
<p>p (<br />
Font-style: italic;<br />
Font-weight: bold;<br />
Font-size: 30px;<br />
Font-family: arial, sans-serif;<br />
)</p>
<p>If this combination is used, the code can be simplified:</p>
<p>p (<br />
Font: italic bold 30px arial, sans-serif;<br />
)</p>
<p>The order of the values for font property is:</p>
<p>[font-style] | [font-variant] | [font-weight] | [font-size] | [font-family]</p>
]]></content:encoded>
			<wfw:commentRss>http://csslearner.com/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
