<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Learn the web with us</title>
	<link>http://iteachweb.net</link>
	<description></description>
	<lastBuildDate>Sun, 29 May 2011 16:46:32 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>How The World Wide Web Works</title>
		<description><![CDATA[Chances are that you&#8217;ve used the Web, perhaps even a lot. However, you might not have done a lot of thinking about how it works under the covers. In this first section, I&#8217;m going to describe the Web at a more theoretical level so that you can understand how it works as a platform.
The Web [...]]]></description>
		<link>http://iteachweb.net/how-the-world-wide-web-works/</link>
			</item>
	<item>
		<title>Web Browsers</title>
		<description><![CDATA[A web browser is the program you use to view pages and navigate the  World Wide Web. A wide array of web browsers is available for just about  every platform you can imagine. Most browsers are freeware or shareware  (try before you buy) or have a lenient licensing policy.Microsoft  Internet Explorer, [...]]]></description>
		<link>http://iteachweb.net/web-browsers/</link>
			</item>
	<item>
		<title>Web Servers</title>
		<description><![CDATA[To view and browse pages on the Web, all you need is a web browser. To publish pages on the Web, you need a web server.
A web server is the program that runs on a computer and is  responsible for replying to web browser requests for files. You need a  web server to [...]]]></description>
		<link>http://iteachweb.net/web-servers/</link>
			</item>
	<item>
		<title>Uniform Resource Locators</title>
		<description><![CDATA[URL is a pointer to some bit of data on the Web, be it a web document, a  file available via FTP, a posting on Usenet, or an email address. The  URL provides a universal, consistent method for finding and accessing  information.
In addition to typing URLs directly into your browser to go [...]]]></description>
		<link>http://iteachweb.net/uniform-resource-locators/</link>
			</item>
	<item>
		<title>Introduction to HTML</title>
		<description><![CDATA[Before we start in the writing web pages. You have to know what HTML can do and what it can&#8217;t do.
The World Wide Web is constructed from many millions of individual  pages, and those pages are, in general written in Hypertext Markup  Language, better known as HTML.
We use it to mark up our [...]]]></description>
		<link>http://iteachweb.net/introduction-to-html/</link>
			</item>
	<item>
		<title>From HTML To XHTML</title>
		<description><![CDATA[The Extensible Hypertext Markup Language, or XHTML, is a markup language  that has the same depth of expression as HTML, but also conforms to XML  syntax.
Every webpage is made with HTML but after 2001 the W3C which the  community that determine the standard for the web decided to discontinue  HTML and [...]]]></description>
		<link>http://iteachweb.net/from-html-to-xhtml/</link>
			</item>
	<item>
		<title>Inside An HTML File</title>
		<description><![CDATA[Pages written in HTML are plain text files (ASCII), which means that  they contain no platform- or program-specific information. Any editor  that supports text can read them.HTML files contain the following:

The text of the page itself.
HTML tags that indicate page elements, structure, formatting, and hypertext links to other pages or to included media

The [...]]]></description>
		<link>http://iteachweb.net/inside-an-html-file/</link>
			</item>
	<item>
		<title>Creating Your First HTML Page</title>
		<description><![CDATA[Open your text editor and type the following code. You don&#8217;t have to  understand what any of it means at this point. This simple example is  just to get you started.

&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34;
 &#34;http://www.w3.org/TR/xhtml1/DTD/transitional.dtd&#34;&#62;
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;My Sample HTML Page&#60;/title&#62;

&#60;/head&#62;
&#60;body&#62;
&#60;h1&#62;This is my first title&#60;/h1&#62;
&#60;p&#62;This is my first webpage paragraph bla bla!&#60;/p&#62;
&#60;/body&#62;

&#60;/html&#62;


Note that [...]]]></description>
		<link>http://iteachweb.net/your-first-html-page/</link>
			</item>
	<item>
		<title>Intergrate CSS</title>
		<description><![CDATA[Cascading style sheets (CSS) is a language that works with HTML  documents to define the way content is presented. The presentation is  specified with styles that are placed directly into HTML elements, the  head of HTML documents, or separate style sheets.
Styles sheets contain a number of CSS rules. Each rule sheets  [...]]]></description>
		<link>http://iteachweb.net/intergrate-css/</link>
			</item>
	<item>
		<title>Structuring Your HTML</title>
		<description><![CDATA[HTML defines three tags that are used to describe the page&#8217;s overall  structure and provide some simple header information. These three tags&#60;html&#62;, &#60;head&#62;, and &#60;body&#62;identify  your page to browsers or HTML tools. They also provide simple  information about the page (such as its title or its author) before  loading the entire [...]]]></description>
		<link>http://iteachweb.net/structuring-your-html/</link>
			</item>
</channel>
</rss>

