<?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>iMutawa</title>
	<atom:link href="http://www.imutawa.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imutawa.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 08 Sep 2011 19:58:42 +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>Learning the basics of HTML &#8211; 1</title>
		<link>http://www.imutawa.com/2011/09/08/learning-the-basics-of-html-1/</link>
		<comments>http://www.imutawa.com/2011/09/08/learning-the-basics-of-html-1/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 19:19:55 +0000</pubDate>
		<dc:creator>Nasser</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.imutawa.com/?p=36</guid>
		<description><![CDATA[What&#8217;s up everyone! I&#8217;ll start posting about the basics of web development starting with HTML, which is the simplest and the most important language to learn to be able to start developing your own website. I&#8217;m sure you have seen this before in links http://www.some-website.com/index.html  &#8211; where index.html is basically an HTML file that includes [...]]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s up everyone!</p>
<p style="text-align: justify;">I&#8217;ll start posting about the basics of web development starting with HTML, which is the simplest and the most important language to learn to be able to start developing your own website.</p>
<p style="text-align: justify;">I&#8217;m sure you have seen this before in links http://www.some-website.com/<span style="color: #ff0000;">index.html</span>  &#8211; where index.html is basically an HTML file that includes basic html tags translated by web browsers (ie, FireFox, Safari, Google Chrome..etc) into the layout you see in every website you visit. HTML is the short term for &#8220;HYPER TEXT MARKUP LANGUAGE&#8221;, and is transferred via HTTP &#8211; &#8220;HYPER TEXT TRANSFER PROTOCOL&#8221;.</p>
<p style="text-align: justify;"><span id="more-36"></span></p>
<p style="text-align: justify;">before I go deeper in this, all you need is an HTML editor, and I would recommend Adobe Dreamweaver to start with. Dreamweaver gives you two options, to either start coding by yourself, or start building your website with the &#8220;WYSIWYG&#8221; editor (What You See Is What You Get). But I advice to first learn basics of HTML to be able to go deeper in your development in the future, regardless of any HTML or Code editor you use.</p>
<p style="text-align: justify;">I have developed my first website back in 1996 using basic HTML tags, and believe me, it&#8217;s really easy to learn! Think of it this way, every web page you see is structured into two basic areas, just like human beings.. a HEAD, and a BODY. Below is a simple form of HTML code:</p>
<pre class="brush: html; gutter: true">&lt;html&gt;

&lt;head&gt; ... &lt;/head&gt;

&lt;body&gt; ... &lt;/body&gt;

&lt;/html&gt;</pre>
<p>The basic HTML syntax is &lt;tag&gt; &#8230; &lt;/tag&gt;. As you have seen in the code above, I have started the HTML code with &lt;html&gt; to let the browser know this is a HTML page, which ends with &lt;/html&gt;. As mentioned earlier, HEAD part starts with &lt;head&gt; and ends with &lt;/head&gt;, and the same goes with the BODY part, starting with &lt;body&gt; and ending with &lt;/body&gt;.</p>
<p>You may ask, what is the difference between HEAD and BODY parts?</p>
<p>HEAD:</p>
<ul>
<li>Includes page title (the title you see in the browsers&#8217; title bar)</li>
<li>External file inclusion (we will come to that later on when we talk about JavaScript and CSS)</li>
<li>Meta tags; those include page refreshing and forwarding option, I will also talk about them as we go..</li>
</ul>
<div>BODY:</div>
<div>
<ul>
<li>Includes everything you see within the browser window! Text, Images, Tables, Forms, Links&#8230;etc</li>
</ul>
<div>So, let&#8217;s add a title to our page! and let&#8217;s set it to be &#8220;My Website!&#8221;.</div>
</div>
<div>
<pre class="brush: html; gutter: true">&lt;html&gt;

&lt;head&gt; &lt;title&gt; My Website! &lt;/title&gt; &lt;/head&gt;

&lt;body&gt; &lt;/body&gt;

&lt;html&gt;</pre>
</div>
<p>So, I guess you have noticed that every HTML should start and close in this syntax &lt;tag&gt; &#8230; &lt;/tag&gt;. Adding the slash &#8220;/&#8221; is to close the tag. Now, with the code above, we have included a title to our page. Now let&#8217;s add some text and spice up the page, with some colors maybe? here&#8217;s the code:</p>
<pre class="brush: html; gutter: true">&lt;html&gt;

&lt;head&gt; &lt;title&gt; My Website! &lt;/title&gt; &lt;/head&gt;

&lt;body&gt; &lt;font face="tahoma" color="red" size="16"&gt; Hello! welcome to my first website!&lt;/font&gt; &lt;/body&gt;

&lt;/html&gt;</pre>
<p>Save your HTML file, double click on it to run it on a browser the output will be&#8230;</p>
<p style="text-align: center;"><a href="http://www.imutawa.com/wp-content/uploads/2011/09/browser.png"><img class="size-full wp-image-42 aligncenter" title="browser" src="http://www.imutawa.com/wp-content/uploads/2011/09/browser.png" alt="" width="537" height="245" /></a></p>
<p style="text-align: left;">I hope that was useful, see you in part 2</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imutawa.com/2011/09/08/learning-the-basics-of-html-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Programming 101</title>
		<link>http://www.imutawa.com/2011/09/05/programming-101/</link>
		<comments>http://www.imutawa.com/2011/09/05/programming-101/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 11:29:02 +0000</pubDate>
		<dc:creator>Nasser</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.imutawa.com/?p=15</guid>
		<description><![CDATA[What&#8217;s up! I have always been motivated to learn and know more about Web programming languages, tools, methods..etc. All programming languages have something in common and I&#8217;ll show you the similarities in a minute. For example, the following code will do two simple things: Save a variable; which is an identifier for a specific value. [...]]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s up!</p>
<p style="text-align: justify;">I have always been motivated to learn and know more about Web programming languages, tools, methods..etc. All programming languages have something in common and I&#8217;ll show you the similarities in a minute. For example, the following code will do two simple things:</p>
<ol>
<li>Save a variable; which is an identifier for a specific value.</li>
<li>Print the value of a variable.</li>
</ol>
<div>You won&#8217;t have to do or follow anything, just try to find the resemblance between the two languages I&#8217;ll use now:</div>
<div><strong>language: PHP</strong></div>
<div>
<pre class="brush: php; gutter: true">&lt;?php

//this is a comment 

/*
this is another code comment, which will not have any effect on the code. 
Developers use these comments as a reference to know what they have done
in this area, or what they should do! 
*/

//Now this is variable called "text" being set to the value "Hello, World!"

$text = "Hello, World!";

//and now, displaying the value of this variable, this will be the PHP script output

echo $text;

?&gt;</pre>
<p>And now.. the same code but using <strong>JavaScript</strong></p>
<pre class="brush: javascript; gutter: true">//this is a comment 

/*
this is another code comment, which will not have any effect on the code.
Developers use these comments as a reference to know what they have done
in this area, or what they should do!
*/

//Now this is variable called "text" being set to the value "Hello, World!"

var text = "Hello, World!";

//and now, displaying the value of this variable, this will be the javascript output

document.write(text);</pre>
</div>
<p style="text-align: justify;">Web programming languages and techniques can never be explained in a single post. I&#8217;ll keep on posting educational articles on the basics of web development languages, techniques, and tools.. and simple How-To guides. Was that useful? drop a comment! <img src='http://www.imutawa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.imutawa.com/2011/09/05/programming-101/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://www.imutawa.com/2011/09/02/welcome/</link>
		<comments>http://www.imutawa.com/2011/09/02/welcome/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 23:59:31 +0000</pubDate>
		<dc:creator>Nasser</dc:creator>
				<category><![CDATA[bla bla]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.imutawa.com/?p=8</guid>
		<description><![CDATA[Welcome to my Development blog! I&#8217;ll be frequently posting about my own web/app development plans and projects. You may have been following my other blog (Blog37.com), which covers &#8211; mostly- social topics. So, I thought about creating this new spot to cover my other interests; Development tools, techniques, tryouts..etc. Stay tuned for Tutorials and Lessons. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">
<p>Welcome to my Development blog! <img src='http://www.imutawa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ll be frequently posting about my own web/app development plans and projects. You may have been following my other blog (Blog37.com), which covers &#8211; mostly- social topics. So, I thought about creating this new spot to cover my other interests; Development tools, techniques, tryouts..etc.</p>
<p>Stay tuned for Tutorials and Lessons.</p>
<p>Regards,<br />
Nasser</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imutawa.com/2011/09/02/welcome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

