<?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>iScript4u</title>
	<atom:link href="http://iscript4u.com/feed" rel="self" type="application/rss+xml" />
	<link>http://iscript4u.com</link>
	<description>We code for you</description>
	<lastBuildDate>Mon, 08 Mar 2010 14:38:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML Basics in a Nutshell</title>
		<link>http://iscript4u.com/html/html-basics-in-a-nutshell.html</link>
		<comments>http://iscript4u.com/html/html-basics-in-a-nutshell.html#comments</comments>
		<pubDate>Fri, 05 Mar 2010 13:04:48 +0000</pubDate>
		<dc:creator>muzamil</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://iscript4u.com/?p=163</guid>
		<description><![CDATA[This Program Summarizes Everything we have learnt till now:
HTML Basic Document
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;Document name goes here&#60;/title&#62;
&#60;/head&#62;
&#60;body&#62;
Visible text goes here&#8230;
&#60;/body&#62;
&#60;/html&#62;
Heading Elements
&#60;h1&#62;Largest Heading&#60;/h1&#62;
&#60;h2&#62; . . . &#60;/h2&#62;
&#60;h3&#62; . . . &#60;/h3&#62;
&#60;h4&#62; . . . &#60;/h4&#62;
&#60;h5&#62; . . . &#60;/h5&#62;
&#60;h6&#62;Smallest Heading&#60;/h6&#62;
Text Elements
&#60;p&#62;This is a paragraph&#60;/p&#62;
&#60;br /&#62; (line break)
&#60;hr /&#62; (horizontal rule)
&#60;pre&#62;This text is preformatted&#60;/pre&#62;
Logical Styles
&#60;em&#62;This text is emphasized&#60;/em&#62;
&#60;strong&#62;This text is [...]]]></description>
			<content:encoded><![CDATA[<p>This Program Summarizes Everything we have learnt till now:</p>
<h3>HTML Basic Document</h3>
<p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Document name goes here&lt;/title&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body&gt;<br />
Visible text goes here&#8230;<br />
&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<h3>Heading Elements</h3>
<p>&lt;h1&gt;Largest Heading&lt;/h1&gt;</p>
<p>&lt;h2&gt; . . . &lt;/h2&gt;<br />
&lt;h3&gt; . . . &lt;/h3&gt;<br />
&lt;h4&gt; . . . &lt;/h4&gt;<br />
&lt;h5&gt; . . . &lt;/h5&gt;</p>
<p>&lt;h6&gt;Smallest Heading&lt;/h6&gt;</p>
<h3>Text Elements</h3>
<p>&lt;p&gt;This is a paragraph&lt;/p&gt;<br />
&lt;br /&gt; (line break)<br />
&lt;hr /&gt; (horizontal rule)<br />
&lt;pre&gt;This text is preformatted&lt;/pre&gt;</p>
<h3>Logical Styles</h3>
<p>&lt;em&gt;This text is emphasized&lt;/em&gt;<br />
&lt;strong&gt;This text is strong&lt;/strong&gt;<br />
&lt;code&gt;This is some computer code&lt;/code&gt;</p>
<h3>Physical Styles</h3>
<p>&lt;b&gt;This text is bold&lt;/b&gt;<br />
&lt;i&gt;This text is italic&lt;/i&gt;</p>
<h3>Links, Anchors, and Image Elements</h3>
<p>&lt;a href=&#8221;http://www.example.com/&#8221;&gt;This is a Link&lt;/a&gt;<br />
&lt;a href=&#8221;http://www.example.com/&#8221;&gt;&lt;img src=&#8221;URL&#8221; alt=&#8221;Alternate Text&#8221;&gt;&lt;/a&gt;<br />
&lt;a href=&#8221;mailto:webmaster@example.com&#8221;&gt;Send e-mail&lt;/a&gt;</p>
<p>A  named anchor:<br />
&lt;a name=&#8221;tips&#8221;&gt;Useful Tips Section&lt;/a&gt;<br />
&lt;a href=&#8221;#tips&#8221;&gt;Jump to the Useful Tips Section&lt;/a&gt;</p>
<h3>Unordered list</h3>
<p>&lt;ul&gt;<br />
&lt;li&gt;First item&lt;/li&gt;<br />
&lt;li&gt;Next item&lt;/li&gt;<br />
&lt;/ul&gt;</p>
<h3>Ordered list</h3>
<p>&lt;ol&gt;<br />
&lt;li&gt;First item&lt;/li&gt;<br />
&lt;li&gt;Next item&lt;/li&gt;<br />
&lt;/ol&gt;</p>
<h3>Definition list</h3>
<p>&lt;dl&gt;<br />
&lt;dt&gt;First term&lt;/dt&gt;<br />
&lt;dd&gt;Definition&lt;/dd&gt;<br />
&lt;dt&gt;Next term&lt;/dt&gt;<br />
&lt;dd&gt;Definition&lt;/dd&gt;<br />
&lt;/dl&gt;</p>
<h3>Tables</h3>
<p>&lt;table border=&#8221;1&#8243;&gt;<br />
&lt;tr&gt;<br />
&lt;th&gt;Tableheader&lt;/th&gt;<br />
&lt;th&gt;Tableheader&lt;/th&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;sometext&lt;/td&gt;<br />
&lt;td&gt;sometext&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<h3>Frames</h3>
<p>&lt;frameset cols=&#8221;25%,75%&#8221;&gt;<br />
&lt;frame src=&#8221;page1.htm&#8221; /&gt;<br />
&lt;frame src=&#8221;page2.htm&#8221; /&gt;<br />
&lt;/frameset&gt;</p>
<h3>Forms</h3>
<p>&lt;form action=&#8221;http://www.example.com/test.asp&#8221; method=&#8221;post/get&#8221;&gt;</p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;email&#8221; value=&#8221;someone@example.com&#8221; size=&#8221;40&#8243; maxlength=&#8221;50&#8243;  /&gt;<br />
&lt;input type=&#8221;password&#8221; /&gt;<br />
&lt;input type=&#8221;checkbox&#8221; checked=&#8221;checked&#8221; /&gt;<br />
&lt;input type=&#8221;radio&#8221; checked=&#8221;checked&#8221; /&gt;<br />
&lt;input type=&#8221;submit&#8221; /&gt;<br />
&lt;input type=&#8221;reset&#8221; /&gt;<br />
&lt;input type=&#8221;hidden&#8221; /&gt;</p>
<p>&lt;select&gt;<br />
&lt;option&gt;Apples&lt;/option&gt;<br />
&lt;option selected=&#8221;selected&#8221;&gt;Bananas&lt;/option&gt;<br />
&lt;option&gt;Cherries&lt;/option&gt;<br />
&lt;/select&gt;</p>
<p>&lt;textarea name=&#8221;comment&#8221; rows=&#8221;60&#8243; cols=&#8221;20&#8243;&gt;&lt;/textarea&gt;</p>
<p>&lt;/form&gt;</p>
<h3>Entities</h3>
<p>&amp;lt; is the same as &lt;<br />
&amp;gt; is the same as &gt;<br />
&amp;#169; is the same as ©</p>
<h3>Other Elements</h3>
<p>&lt;!&#8211; This is a comment &#8211;&gt;</p>
<p>&lt;blockquote&gt;<br />
Text quoted from a source.<br />
&lt;/blockquote&gt;</p>
<p>&lt;address&gt;<br />
Written by W3Schools.com&lt;br /&gt;<br />
&lt;a href=&#8221;mailto:us@example.org&#8221;&gt;Email us&lt;/a&gt;&lt;br /&gt;<br />
Address: Box 564, Disneyland&lt;br /&gt;<br />
Phone: +12 34 56 78<br />
&lt;/address&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://iscript4u.com/html/html-basics-in-a-nutshell.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
