<?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>Saheltech Blog &#187; Definitions and Usages</title>
	<atom:link href="http://www.saheltech.com/blog/category/definition-usage/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.saheltech.com/blog</link>
	<description>Web Programming - Online Marketing - Multimedia Training</description>
	<lastBuildDate>Fri, 29 Jan 2010 03:15:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS what can you do with it?</title>
		<link>http://www.saheltech.com/blog/20070107/css-what-can-you-do-with-it/</link>
		<comments>http://www.saheltech.com/blog/20070107/css-what-can-you-do-with-it/#comments</comments>
		<pubDate>Mon, 08 Jan 2007 03:52:11 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS Tips & Tricks]]></category>
		<category><![CDATA[Definitions and Usages]]></category>

		<guid isPermaLink="false">http://www.saheltech.com/blog/2007/01/03/css-what-can-you-do-with-it/</guid>
		<description><![CDATA[CSS stands for Cascading Style Sheets.
Typically a Style Sheet is a plain text document with a set of instructions (CSS styles, rules) specifying how each element (selectors) in your web page should be appear in a computer screen or even how it is printed on a sheet of paper.


You can use CSS to specify for [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>CSS stands for Cascading Style Sheets.</p>
<p>Typically a Style Sheet is a plain text document with a set of instructions (CSS styles, rules) specifying how each element (selectors) in your web page should be appear in a computer screen or even how it is printed on a sheet of paper.
</p>
<p><span id="more-7"></span></p>
<p>You can use CSS to specify for instance:<br />
- to specify what font to use  in a paragrah, in what the size the text will be and it color, alignment, the paragraph&#8217;s  background image, background color and more.</p>
<p>- or even intead of the regular blue color of text link, with CSS you can choose a different color and even create a rollover effect on each text link when the mouse hover on it.</p>
<p>Above all, the power of Style Sheets is more revealed when it comes to positioning different sections of a web page. </p>
<p>For example in this web site, the HTML code of the navigation menu is at the very bottom of the page code. Without CSS this web page navigation would appear on the botton of your screen. But thanks to CSS positioning our web site navigation (Home, Web Design, &#8230;, Blog) is et to be shown at the top of the page.</p>
<p>In othe words your web pages visual appearance is not anymore determine by how the HTML code is formatted. To illustrate that with a metaphor, the HTML represent the inventory of the store and the CSS determine how items are placed in the shelves.</p>
<p>You can pretty much use CSS to create a visual layout of your web page just like a puzzle except that in this case the pieces are in a rectangular shape. </p>
<p>YEH, YEH, YEH, we got it now!! <strong>What is the Cascading For in CSS?</strong><br />
I am glad you ask.</p>
<p>The cool thing is you can have as many style sheets in a web page as you want. Each style sheets defines a certain number of styles named CSS rules. When the web browser read the CSS rules coming from each style sheet it combined them then apply each CSS rule to your web page. </p>
<p>You can define the positioning of a element in one style sheet, then its font formatting in another style sheet and so forth.<br />
Therefore the final style of that element is the combination of CSS rules defined is different style sheets: that&#8217;s a <strong>cascade</strong> of styles</p>
<p>If the CSS rule defined in a style sheet does nt conflict with those defined in the next style sheets then the last CSS rules augment any previous style defined for that element (selector).<br />
If the CSS rules of the style sheets conflict, then the last defined rule takes precedence.</p>
<p>Using CSS make not only the web page code cleaner by separating the content ffrom the presentation, it also make your web site maintenance easier. Many web pages can share the same CSS file. You can modify your entire web site presentation by just updating your CSS file without going through each web page.  </p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://www.saheltech.com/blog/20070107/css-what-can-you-do-with-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: what is it for</title>
		<link>http://www.saheltech.com/blog/20070103/javascript-what-is-it-for/</link>
		<comments>http://www.saheltech.com/blog/20070103/javascript-what-is-it-for/#comments</comments>
		<pubDate>Thu, 04 Jan 2007 02:22:11 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Definitions and Usages]]></category>
		<category><![CDATA[Javascript Tips]]></category>

		<guid isPermaLink="false">http://www.saheltech.com/blog/2007/01/03/javascript-what-is-it-for/</guid>
		<description><![CDATA[Javascript is a programming language just as any other computer programming language.
However it is very popular and useful in web site design as it allow some kind of interaction between the web page and the web site visitor.

For instance, when you fill out a contact form in a web site and does not properly entered [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Javascript is a programming language just as any other computer programming language.<br />
However it is very popular and useful in web site design as it allow some kind of interaction between the web page and the web site visitor.</p>
<p><span id="more-9"></span></p>
<p>For instance, when you fill out a contact form in a web site and does not properly entered certain fields, you would be prompted to make the corrections by a pop-up message as shown below:</p>
<p><img title="Javascript Alert Pop-up window" alt="Javascript Alert Pop-up window" src="http://www.saheltech.com/blog/wp-content/uploads/2007/01/javascript-alert.gif" align="top" /><br />
However Javascript does more than that. Without it, you could not see pop-up navigation menus shown in this web site when you place the mouse over the top links (Web design, Marketing, Training, &#8230;). Therefore in this Javascript allow the web developer to enhance the web site usability.</p>
<p>Also with the advent of AJAX (Asynchronous Javascript and XML) in Web 2.0, Javascript is at the forefront of AJAX application. If you have not yet see the power of AJAX, please checkout google maps or google keywords suggestion tool.</p>
<p>Unfortunately some scrupulous web sites use javascript the wrong way like filling your browser with lots of pop-up windows that you have to battle with in a race of clicks in order to get rid of all of them.<br />
Because of that some computer antivirus or antispayware programs block the execution javascript program unless you explicitly enabled javascript for the web site you are viewing.</p>
<p>I totally understand your concerns if you are one of those warry web surfers annoyed by pop-up windows and the like. But trust me on this, any serious business would only use javascript on their web site to add a plus to your web browing experience NOT to trick you into doing something else shady.</p>
<p>That being said, just looking at the web site in front of you will reveal whether or not it&#8217;s worth allowing javascript from that web site to be executed or not.</p>
<p>As far as Saheltech.com is concerned, we take our business seriouly and value your visit to our website. Just for that reason and many legimited others our javascript code is safe to run in your web browser.</p>
<!-- sphereit end -->]]></content:encoded>
			<wfw:commentRss>http://www.saheltech.com/blog/20070103/javascript-what-is-it-for/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
