<?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>Amaronline.com &#187; HTML</title>
	<atom:link href="http://www.amaronline.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.amaronline.com</link>
	<description>Technology makes everything perfect</description>
	<lastBuildDate>Fri, 30 Jul 2010 07:45:31 +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>HTML Character Entities</title>
		<link>http://www.amaronline.com/2008/11/html-character-entities/</link>
		<comments>http://www.amaronline.com/2008/11/html-character-entities/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 13:22:19 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html character entities]]></category>
		<category><![CDATA[html tags]]></category>

		<guid isPermaLink="false">http://www.amaronline.com/?p=83</guid>
		<description><![CDATA[Reserved characters in HTML must be replaced with character entities. Character Entities Some characters are reserved in HTML. For example, you cannot use the greater than or less than signs within your text because the browser could mistake them for markup. If we want the browser to actually display these characters we must insert character [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fhtml-character-entities%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fhtml-character-entities%2F&amp;source=amaronline&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img align="left" src="http://www.amaronline.com/wp-content/plugins/image-shadow/cache/a529170065991e561bf06cd4893c8a62.jpg" alt="" />Reserved characters in HTML must be replaced with character entities. Character Entities  Some characters are reserved in HTML. For example, you cannot use the greater than or less than signs within your text because the browser could mistake them for markup.  If we want the browser to actually display these characters we must insert character entities in the HTML source.  A character entity looks like this: &amp;entity_name; OR &amp;#entity_number;  To display a less than sign we must write: &amp;lt; or &amp;#60;  The advantage of using an entity name instead of a number is that the name often is easier to remember. However, the disadvantage is that browsers may not support all entity names (while the support for entity numbers is very good). Non-breaking Space  The most common character entity in HTML is the non-breaking space.  Normally HTML will truncate spaces in your text. If you write 10 spaces in your text HTML will remove 9 of them. To add lots of spaces to your text, use the &amp;nbsp; character entity. Try It Yourself  This example lets you experiment with character entities: Try it yourself Commonly Used Character Entities  Note Entity names are case sensitive! Result &nbsp;&nbsp;&nbsp; Description &nbsp;&nbsp;&nbsp; Entity Name &nbsp;&nbsp;&nbsp; Entity Number non-breaking space &nbsp;&nbsp;&nbsp; &amp;nbsp; &nbsp;&nbsp;&nbsp; &amp;#160; &lt; &nbsp;&nbsp;&nbsp; less than &nbsp;&nbsp;&nbsp; &amp;lt; &nbsp;&nbsp;&nbsp; &amp;#60; &gt; &nbsp;&nbsp;&nbsp; greater than &nbsp;&nbsp;&nbsp; &amp;gt; &nbsp;&nbsp;&nbsp; &amp;#62; &amp; &nbsp;&nbsp;&nbsp; ampersand &nbsp;&nbsp;&nbsp; &amp;amp; &nbsp;&nbsp;&nbsp; &amp;#38; &cent; &nbsp;&nbsp;&nbsp; cent &nbsp;&nbsp;&nbsp; &amp;cent; &nbsp;&nbsp;&nbsp; &amp;#162; &pound; &nbsp;&nbsp;&nbsp; pound &nbsp;&nbsp;&nbsp; &amp;pound; &nbsp;&nbsp;&nbsp; &amp;#163; &yen; &nbsp;&nbsp;&nbsp; yen &nbsp;&nbsp;&nbsp; &amp;yen; &nbsp;&nbsp;&nbsp; &amp;#165; &euro; &nbsp;&nbsp;&nbsp; euro &nbsp;&nbsp;&nbsp; &amp;euro; &nbsp;&nbsp;&nbsp; &amp;#8364; &sect; &nbsp;&nbsp;&nbsp; section &nbsp;&nbsp;&nbsp; &amp;sect; &nbsp;&nbsp;&nbsp; &amp;#167; &copy; &nbsp;&nbsp;&nbsp; copyright &nbsp;&nbsp;&nbsp; &amp;copy; &nbsp;&nbsp;&nbsp; &amp;#169; &reg; &nbsp;&nbsp;&nbsp; registered trademark &nbsp;&nbsp;&nbsp; &amp;reg; &nbsp;&nbsp;&nbsp; &amp;#174;</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/html-character-entities/" target="_blank" class="liimagelink"><img src="http://www.amaronline.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/html-character-entities/" target="_blank" title="Share on Facebook" class="liexternal">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2008/11/html-character-entities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic HTML Tags</title>
		<link>http://www.amaronline.com/2008/11/basic-html-tags/</link>
		<comments>http://www.amaronline.com/2008/11/basic-html-tags/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 12:59:37 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html editor]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://www.amaronline.com/?p=72</guid>
		<description><![CDATA[This chapter covers some basic HTML tags like headings, paragraphs and line breaks. Try it Yourself &#8211; Examples The best way to learn HTML to work with examples. We have created a nice HTML editor for you. With this editor, you can edit HTML source code, and click on a test button to view the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fbasic-html-tags%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fbasic-html-tags%2F&amp;source=amaronline&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>This chapter covers some basic HTML tags like headings, paragraphs and line breaks.<br />
Try it Yourself &#8211; Examples</p>
<p>The best way to learn HTML to work with examples.</p>
<p>We have created a nice HTML editor for you. With this editor, you can edit HTML source code, and click on a test button to view the result.</p>
<p>A very simple HTML document<br />
This example is a very simple HTML document, with only a minimum of HTML tags. It demonstrates how the text inside a body element is displayed in the browser.</p>
<p>Simple paragraphs<br />
This example demonstrates how the text inside paragraph elements is displayed in the browser.</p>
<p>(You can find more examples at the bottom of this page)<br />
Headings</p>
<p>Headings are defined with the &lt;h1&gt; to &lt;h6&gt; tags. &lt;h1&gt; defines the largest heading. &lt;h6&gt; defines the smallest heading.</p>
<p>&lt;h1&gt;This is a heading&lt;/h1&gt;<br />
&lt;h2&gt;This is a heading&lt;/h2&gt;<br />
&lt;h3&gt;This is a heading&lt;/h3&gt;<br />
&lt;h4&gt;This is a heading&lt;/h4&gt;<br />
&lt;h5&gt;This is a heading&lt;/h5&gt;<br />
&lt;h6&gt;This is a heading&lt;/h6&gt;</p>
<p>HTML automatically adds an extra blank line before and after a heading.</p>
<p>Try it yourself<br />
Paragraphs</p>
<p>Paragraphs are defined with the &lt;p&gt; tag.</p>
<p>&lt;p&gt;This is a paragraph&lt;/p&gt;<br />
&lt;p&gt;This is another paragraph&lt;/p&gt;</p>
<p>HTML automatically adds an extra blank line before and after a paragraph.</p>
<p>Try it yourself<br />
Don&#8217;t Forget the Closing Tag</p>
<p>You might have noticed that paragraphs can be written without end tags &lt;/p&gt;:</p>
<p>&lt;p&gt;This is a paragraph<br />
&lt;p&gt;This is another paragraph</p>
<p>The example above will work in most browsers, but don&#8217;t rely on it. Future version of HTML will not allow you to skip ANY end tags.</p>
<p>Closing all HTML elements with an end tag is a future-proof way of writing HTML. It also makes the code easier to understand (read and browse) when you mark both where an element starts and where it ends.<br />
Line Breaks</p>
<p>The &lt;br&gt; tag is used when you want to break a line, but don&#8217;t want to start a new paragraph. The &lt;br&gt; tag forces a line break wherever you place it.</p>
<p>&lt;p&gt;This &lt;br&gt; is a para&lt;br&gt;graph with line breaks&lt;/p&gt;</p>
<p>Try it yourself</p>
<p>The &lt;br&gt; tag is an empty tag. It has no end tag like &lt;/br&gt;, since a closing tag doesn&#8217;t make any sense.<br />
&lt;br&gt; or &lt;br /&gt;</p>
<p>More and more often you will see the &lt;br&gt; tag written like this: &lt;br /&gt;</p>
<p>Because the &lt;br&gt; tag has no end tag (or closing tag), it breaks one of the rules for future HTML (the XML based XHTML), namely that all elements must be closed.</p>
<p>Writing it like &lt;br /&gt; is a future proof way of closing (or ending) the tag inside the opening tag, accepted by both HTML and XML.<br />
Comments in HTML</p>
<p>The comment tag is used to insert a comment in the HTML source code. A comment will be ignored by the browser. You can use comments to explain your code, which can help you when you edit the source code at a later date.</p>
<p>&lt;!&#8211; This is a comment &#8211;&gt;</p>
<p>Note that you need an exclamation point after the opening bracket, but not before the closing bracket.</p>
<p>Try it yourself<br />
HTML Elements</p>
<p>* Each HTML element has an element name (body, h1, p, br)<br />
* The start tag is the name surrounded by angle brackets: &lt;h1&gt;<br />
* The end tag is a slash and the name surrounded by angle brackets &lt;/h1&gt;<br />
* The element content occurs between the start tag and the end tag<br />
* Some HTML elements have no content<br />
* Some HTML elements have no end tag</p>
<p>You will learn more about HTML elements in the next chapter of this tutorial.<br />
Basic Notes &#8211; Useful Tips</p>
<p>When you write HTML text, you can never be sure how the text is displayed in another browser. Some people have large computer displays, some have small. The text will be reformatted every time the user resizes his window. Never try to format the text in your editor by adding empty lines and spaces to the text.</p>
<p>HTML will truncate the spaces in your text. Any number of spaces count as one. Some extra information: In HTML a new line counts as one space.</p>
<p>Using empty paragraphs &lt;p&gt; to insert blank lines is a bad habit. Use the &lt;br&gt; tag instead. (But don&#8217;t use the &lt;br&gt; tag to create lists. Wait until you have learned about HTML lists.)</p>
<p>HTML automatically adds an extra blank line before and after some elements, like before and after a paragraph, and before and after a heading.</p>
<p>We use a horizontal rule (the &lt;hr&gt; tag), to separate the sections in our tutorials.<br />
Examples From This Page</p>
<p>A very simple HTML document<br />
This example is a very simple HTML document, with only a minimum of HTML tags. It demonstrates how the text inside a body element is displayed in the browser.</p>
<p>Simple paragraphs<br />
This example demonstrates how the text inside paragraph elements is displayed in the browser.</p>
<p>Headings<br />
This example demonstrates the tags that display headings in an HTML document.</p>
<p>Line breaks<br />
This example demonstrates the use of line breaks in an HTML document.</p>
<p>Hidden comments<br />
This example demonstrates how to insert a hidden comment in the HTML source code.<br />
More Examples</p>
<p>More paragraphs<br />
This example demonstrates some of the default behaviors of paragraph elements.</p>
<p>Poem problems<br />
This example demonstrates some problems with HTML formatting.</p>
<p>Horizontal rule<br />
This example demonstrates how to insert a horizontal rule.<br />
Basic HTML Tags</p>
<p>If you lookup the basic HTML tags in the reference below, you will see that the reference contains additional information about tag attributes.</p>
<p>You will learn more about HTML tag attributes in the next chapter of this tutorial.<br />
Tag     Description<br />
&lt;html&gt;     Defines an HTML document<br />
&lt;body&gt;     Defines the document&#8217;s body<br />
&lt;h1&gt; to &lt;h6&gt;     Defines header 1 to header 6<br />
&lt;p&gt;     Defines a paragraph<br />
&lt;br&gt;     Inserts a single line break<br />
&lt;hr&gt;     Defines a horizontal rule<br />
&lt;!&#8211;&gt;     Defines a comment</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/basic-html-tags/" target="_blank" class="liimagelink"><img src="http://www.amaronline.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/basic-html-tags/" target="_blank" title="Share on Facebook" class="liexternal">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2008/11/basic-html-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is HTML?</title>
		<link>http://www.amaronline.com/2008/11/what-is-html/</link>
		<comments>http://www.amaronline.com/2008/11/what-is-html/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 16:54:57 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[frontpage]]></category>
		<category><![CDATA[html editor]]></category>
		<category><![CDATA[learn html]]></category>
		<category><![CDATA[text editor]]></category>
		<category><![CDATA[what is html]]></category>

		<guid isPermaLink="false">http://www.amaronline.com/?p=7</guid>
		<description><![CDATA[HTML is a language for describing web pages. * HTML stands for Hyper Text Markup Language * HTML is not a programming language, it is a markup language * A markup language is a set of markup tags * The markup tags describe how text should be displayed by a web browser HTML Markup Tags [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fwhat-is-html%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fwhat-is-html%2F&amp;source=amaronline&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img align="left" src="http://www.amaronline.com/wp-content/plugins/image-shadow/cache/a529170065991e561bf06cd4893c8a62.jpg" alt="" />HTML is a language for describing web pages.  * HTML stands for Hyper Text Markup Language * HTML is not a programming language, it is a markup language * A markup language is a set of markup tags * The markup tags describe how text should be displayed by a web browser  HTML Markup Tags  * HTML tags are markup codes surrounded by brackets like &lt;html&gt; * HTML tags normally come in pairs like &lt;b&gt; and &lt;/b&gt; * The first tag in a pair is the start tag, the second tag is the end tag  What is an HTML File?  * An HTML file is a text file with markup tags * An HTML file must have an htm or html file extension * An HTML file can be created using a simple text editor * An HTML file is often called an HTML document or a web page  When a browser displays a web page, it will not display the markup tags. The browser uses the markup tags to understand the layout of the page. An HTML Document  &lt;html&gt;  &lt;body&gt; &lt;p&gt;This is my first paragraph&lt;/p&gt; &lt;p&gt;This is my &lt;b&gt;second&lt;/b&gt; paragraph&lt;/p&gt; &lt;/body&gt;  &lt;/html&gt;  Try it yourself Example Explained  When a browser displays a web page, it will not display the markup tags.  The text between the &lt;html&gt; and &lt;/html&gt; tags describes a web page.  The text between the &lt;body&gt; and &lt;/body&gt; tags is displayed in the web browser.  The text between the &lt;p&gt; and &lt;/p&gt; tags is displayed as paragraphs.  The text between the &lt;b&gt; and &lt;/b&gt; tags is displayed in a bold font. Writing HTML  In this tutorial we use a plain text editor (like Notepad) to edit HTML. This is a good way to learn HTML.  However, professional web developers often prefer HTML editors like FrontPage or Dreamweaver, instead of writing plain text.  In the next chapter of this tutorial, you will learn how to create a web site on your computer.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/what-is-html/" target="_blank" class="liimagelink"><img src="http://www.amaronline.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/what-is-html/" target="_blank" title="Share on Facebook" class="liexternal">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2008/11/what-is-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to Amaronline!</title>
		<link>http://www.amaronline.com/2008/11/welcome-to-amaronline/</link>
		<comments>http://www.amaronline.com/2008/11/welcome-to-amaronline/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 13:25:01 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[Web Guide]]></category>
		<category><![CDATA[a guide to webdesigners]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[applets]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[corel]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[dhtml]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[golive]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[jsp]]></category>
		<category><![CDATA[macromedia]]></category>
		<category><![CDATA[ms access]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[servlets]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[web technologies]]></category>
		<category><![CDATA[xml/xsl]]></category>

		<guid isPermaLink="false">http://amaronline.com/?p=1</guid>
		<description><![CDATA[Amaronline is for Web Designers, Web Developers, Web Design companies etc to discuss about 1. Latest Web Technologies 2. Latest Web related Softwares 3. Job Opportunities in Web Technologies 4. Advice to New-bee web designers and wanna be web designers and developers 5. Discuss about Multimedia and related Technologies 6. Discuss about Flash Design and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fwelcome-to-amaronline%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fwelcome-to-amaronline%2F&amp;source=amaronline&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p align="left">Amaronline is for Web Designers, Web Developers, Web Design companies etc to discuss about</p>
<p align="left">1. Latest Web Technologies<br />
2. Latest Web related Softwares<br />
3. Job Opportunities in Web Technologies<br />
4. Advice to New-bee web designers and wanna be web designers and developers<br />
5. Discuss about Multimedia and related Technologies<br />
6. Discuss about Flash Design and Action Scripting.<br />
7. Collect information on Web tutorials, Guides, Resources and useful links for web professionals<br />
8. Helping Freelance web designers and developers to get Projects and assist them to complete the projects.<br />
9. Internet Consultancy to small businesses located in Andhra Pradesh and Hyderabad.<br />
10. Helping Web Designers and Web Developers of AP Origin to relocate to Hyderabad by providing a better opprtunity and many more&#8230;.<br />
11. Discuss about technologies like HTML, DHTML, CSS, ADOBE, macromedia, Corel products, Flash, Action Script, GoLive, Java Script, ASP, ASP.net, PERL, PHP, MySQL, MS SQL, MS Acess, JSP, Servlets, Applets, XML/XSL etc..</p>
<p>Please recommend this Group URL to your friends who are into web designing and web development and who wants to take this field as their career. Khow how to design and develop and manage websites and also learn how to build websites with in few hours.</p>
<p align="left">Amaronline is for Web Designers, Web Developers, Web Design companies etc to discuss about</p>
<p align="left">1. Latest Web Technologies<br />
2. Latest Web related Softwares<br />
3. Job Opportunities in Web Technologies<br />
4. Advice to New-bee web designers and wanna be web designers and developers<br />
5. Discuss about Multimedia and related Technologies<br />
6. Discuss about Flash Design and Action Scripting.<br />
7. Collect information on Web tutorials, Guides, Resources and useful links for web professionals<br />
8. Helping Freelance web designers and developers to get Projects and assist them to complete the projects.<br />
9. Internet Consultancy to small businesses located in Andhra Pradesh and Hyderabad.<br />
10. Helping Web Designers and Web Developers of AP Origin to relocate to Hyderabad by providing a better opprtunity and many more&#8230;.<br />
11. Discuss about technologies like HTML, DHTML, CSS, ADOBE, macromedia, Corel products, Flash, Action Script, GoLive, Java Script, ASP, ASP.net, PERL, PHP, MySQL, MS SQL, MS Acess, JSP, Servlets, Applets, XML/XSL etc..</p>
<p>Please recommend this Group URL to your friends who are into web designing and web development and who wants to take this field as their career. Khow how to design and develop and manage websites and also learn how to build websites with in few hours.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/welcome-to-amaronline/" target="_blank" class="liimagelink"><img src="http://www.amaronline.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/welcome-to-amaronline/" target="_blank" title="Share on Facebook" class="liexternal">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2008/11/welcome-to-amaronline/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
