<?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 tags</title>
	<atom:link href="http://www.amaronline.com/tag/html-tags/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 Links</title>
		<link>http://www.amaronline.com/2008/11/html-links/</link>
		<comments>http://www.amaronline.com/2008/11/html-links/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 13:35:21 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html tags]]></category>

		<guid isPermaLink="false">http://www.amaronline.com/?p=85</guid>
		<description><![CDATA[HTML uses a hyperlink to link to another document on the Web. HTML uses the &#60;a&#62; (anchor) tag to create a link to another document. An anchor can point to any resource on the Web: an HTML page, an image, a sound file, a movie, etc. The syntax of creating an anchor: &#60;a href=&#34;url&#34;&#62;Text to [...]]]></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-links%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fhtml-links%2F&amp;source=amaronline&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img height="96" align="left" width="135" src="http://www.amaronline.com/wp-content/plugins/image-shadow/cache/a529170065991e561bf06cd4893c8a62.jpg" alt="" />HTML uses a hyperlink to link to another document on the Web.  HTML uses the &lt;a&gt; (anchor) tag to create a link to another document.  An anchor can point to any resource on the Web: an HTML page, an image, a sound file, a movie, etc.  The syntax of creating an anchor:  &lt;a href=&quot;url&quot;&gt;Text to be displayed&lt;/a&gt;  The &lt;a&gt; tag is used to create an anchor to link from, the href attribute is used to address the document to link to, and the words between the open and close of the anchor tag will be displayed as a hyperlink.  This anchor defines a link to W3Schools:  &lt;a href=&quot;http://www.w3schools.com/&quot;&gt;Visit W3Schools!&lt;/a&gt;  The line above will look like this in a browser:  Visit W3Schools! The Target Attribute  With the target attribute, you can define where the linked document will be opened.  The line below will open the document in a new browser window:  &lt;a href=&quot;http://www.w3schools.com/&quot; target=&quot;_blank&quot;&gt;Visit W3Schools!&lt;/a&gt;  The Anchor Tag and the Name Attribute  The name attribute is used to create a named anchor. When using named anchors we can create links that can jump directly into a specific section on a page, instead of letting the user scroll around to find what he/she is looking for.  Below is the syntax of a named anchor:  &lt;a name=&quot;label&quot;&gt;Text to be displayed&lt;/a&gt;  The name attribute is used to create a named anchor. The name of the anchor can be any text you care to use.  The line below defines a named anchor:  &lt;a name=&quot;tips&quot;&gt;Useful Tips Section&lt;/a&gt;  You should notice that a named anchor is not displayed in a special way.  To link directly to the &quot;tips&quot; section, add a # sign and the name of the anchor to the end of a URL, like this:  &lt;a href=&quot;http://www.w3schools.com/html_links.asp#tips&quot;&gt; Jump to the Useful Tips Section&lt;/a&gt;  A hyperlink to the Useful Tips Section from WITHIN the file &quot;html_links.asp&quot; will look like this:  &lt;a href=&quot;#tips&quot;&gt;Jump to the Useful Tips Section&lt;/a&gt;  Basic Notes &#8211; Useful Tips  Always add a trailing slash to subfolder references. If you link like this: href=&quot;http://www.w3schools.com/html&quot;, you will generate two HTTP requests to the server, because the server will add a slash to the address and create a new request like this: href=&quot;http://www.w3schools.com/html/&quot;  Named anchors are often used to create &quot;table of contents&quot; at the beginning of a large document. Each chapter within the document is given a named anchor, and links to each of these anchors are put at the top of the document.  Link Tags Tag &nbsp;&nbsp;&nbsp; Description &lt;a&gt; &nbsp;&nbsp;&nbsp; Defines an anchor</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/html-links/" 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-links/" target="_blank" title="Share on Facebook" class="liexternal">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2008/11/html-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>HTML Text Formatting</title>
		<link>http://www.amaronline.com/2008/11/html-text-formatting/</link>
		<comments>http://www.amaronline.com/2008/11/html-text-formatting/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 13:17:24 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html tags]]></category>
		<category><![CDATA[html text formatting]]></category>

		<guid isPermaLink="false">http://www.amaronline.com/?p=81</guid>
		<description><![CDATA[HTML defines a lot of elements for formatting output, like bold or italic text. Below are a lot of examples that you can try out yourself: Have you ever seen a Web page and wondered &#34;Hey! How did they do that?&#34; To find out, click the VIEW option in your browser&#8217;s toolbar and select SOURCE [...]]]></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-text-formatting%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fhtml-text-formatting%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 defines a lot of elements for formatting output, like bold or italic text.  Below are a lot of examples that you can try out yourself:  Have you ever seen a Web page and wondered &quot;Hey! How did they do that?&quot;  To find out, click the VIEW option in your browser&#8217;s toolbar and select SOURCE or PAGE SOURCE. This will open a window that shows you the HTML code of the page. Text Formatting Tags Tag &nbsp;&nbsp;&nbsp; Description &lt;b&gt; &nbsp;&nbsp;&nbsp; Defines bold text &lt;big&gt; &nbsp;&nbsp;&nbsp; Defines big text &lt;em&gt; &nbsp;&nbsp;&nbsp; Defines emphasized text &lt;i&gt; &nbsp;&nbsp;&nbsp; Defines italic text &lt;small&gt; &nbsp;&nbsp;&nbsp; Defines small text &lt;strong&gt; &nbsp;&nbsp;&nbsp; Defines strong text &lt;sub&gt; &nbsp;&nbsp;&nbsp; Defines subscripted text &lt;sup&gt; &nbsp;&nbsp;&nbsp; Defines superscripted text &lt;ins&gt; &nbsp;&nbsp;&nbsp; Defines inserted text &lt;del&gt; &nbsp;&nbsp;&nbsp; Defines deleted text &lt;s&gt; &nbsp;&nbsp;&nbsp; Deprecated. Use &lt;del&gt; instead &lt;strike&gt; &nbsp;&nbsp;&nbsp; Deprecated. Use &lt;del&gt; instead &lt;u&gt; &nbsp;&nbsp;&nbsp; Deprecated. Use styles instead &quot;Computer Output&quot; Tags Tag &nbsp;&nbsp;&nbsp; Description &lt;code&gt; &nbsp;&nbsp;&nbsp; Defines computer code text &lt;kbd&gt; &nbsp;&nbsp;&nbsp; Defines keyboard text &lt;samp&gt; &nbsp;&nbsp;&nbsp; Defines sample computer code &lt;tt&gt; &nbsp;&nbsp;&nbsp; Defines teletype text &lt;var&gt; &nbsp;&nbsp;&nbsp; Defines a variable &lt;pre&gt; &nbsp;&nbsp;&nbsp; Defines preformatted text &lt;listing&gt; &nbsp;&nbsp;&nbsp; Deprecated. Use &lt;pre&gt; instead &lt;plaintext&gt; &nbsp;&nbsp;&nbsp; Deprecated. Use &lt;pre&gt; instead &lt;xmp&gt; &nbsp;&nbsp;&nbsp; Deprecated. Use &lt;pre&gt; instead Citations, Quotations, and Definition Tags Tag &nbsp;&nbsp;&nbsp; Description &lt;abbr&gt; &nbsp;&nbsp;&nbsp; Defines an abbreviation &lt;acronym&gt; &nbsp;&nbsp;&nbsp; Defines an acronym &lt;address&gt; &nbsp;&nbsp;&nbsp; Defines an address element &lt;bdo&gt; &nbsp;&nbsp;&nbsp; Defines the text direction &lt;blockquote&gt; &nbsp;&nbsp;&nbsp; Defines a long quotation &lt;q&gt; &nbsp;&nbsp;&nbsp; Defines a short quotation &lt;cite&gt; &nbsp;&nbsp;&nbsp; Defines a citation &lt;dfn&gt; &nbsp;&nbsp;&nbsp; Defines a definition term</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/html-text-formatting/" 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-text-formatting/" target="_blank" title="Share on Facebook" class="liexternal">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2008/11/html-text-formatting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Attributes</title>
		<link>http://www.amaronline.com/2008/11/html-attributes/</link>
		<comments>http://www.amaronline.com/2008/11/html-attributes/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 13:14:49 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html attributes]]></category>
		<category><![CDATA[html tags]]></category>

		<guid isPermaLink="false">http://www.amaronline.com/?p=79</guid>
		<description><![CDATA[Attributes provide additional information to an HTML element. HTML Tag Attributes HTML tags can have attributes. Attributes provide additional information to an HTML element. Attributes always come in name/value pairs like this: name=&#34;value&#34;. Attributes are always specified in the start tag of an HTML element. Attributes Example 1: &#60;h1&#62; defines the start of a heading. [...]]]></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-attributes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fhtml-attributes%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="" />Attributes provide additional information to an HTML element. HTML Tag Attributes HTML tags can have attributes. Attributes provide additional information to an HTML element.  Attributes always come in name/value pairs like this: name=&quot;value&quot;.  Attributes are always specified in the start tag of an HTML element. Attributes Example 1:  &lt;h1&gt; defines the start of a heading.  &lt;h1 align=&quot;center&quot;&gt; has additional information about the alignment.  Try it yourself: Center aligned heading Attributes Example 2:  &lt;body&gt; defines the body of an HTML document.  &lt;body bgcolor=&quot;yellow&quot;&gt; has additional information about the background color.  Try it yourself: Background color Attributes Example 3:  &lt;table&gt; defines an HTML table. (You will learn more about HTML tables later)  &lt;table border=&quot;1&quot;&gt; has additional information about the border around the table. Use Lowercase Attributes  Attributes and attribute values are case-insensitive. However, the World Wide Web Consortium (W3C) recommends lowercase attributes/attribute values in their HTML 4 recommendation, and XHTML demands lowercase attributes/attribute values. Always Quote Attribute Values  Attribute values should always be enclosed in quotes. Double style quotes are the most common, but single style quotes are also allowed.  In some rare situations, like when the attribute value itself contains quotes, it is necessary to use single quotes:  name=&#8217;John &quot;ShotGun&quot; Nelson&#8217;</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/html-attributes/" 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-attributes/" target="_blank" title="Share on Facebook" class="liexternal">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2008/11/html-attributes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Elements</title>
		<link>http://www.amaronline.com/2008/11/html-elements/</link>
		<comments>http://www.amaronline.com/2008/11/html-elements/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 13:13:23 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html elements]]></category>
		<category><![CDATA[html tags]]></category>

		<guid isPermaLink="false">http://www.amaronline.com/?p=77</guid>
		<description><![CDATA[An HTML document consists of HTML elements. HTML elements are defined by HTML tags. HTML Tags * HTML tags are markup surrounded by angle brackets like &#60;html&#62; * HTML tags normally come in pairs like &#60;b&#62; and &#60;/b&#62; * The first tag in a pair is the start tag, the second tag is the end [...]]]></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-elements%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fhtml-elements%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="" />An HTML document consists of HTML elements.  HTML elements are defined by HTML tags. HTML Tags  * HTML tags are markup surrounded by angle 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  HTML Elements  * An HTML element starts with a start tag * The element content is everything between the start and end tag * An HTML element ends with an end tag  Example  &lt;html&gt;  &lt;body&gt; &lt;p&gt;This is my first paragraph&lt;/p&gt; &lt;/body&gt;  &lt;/html&gt;  The example above contains 3 HTML elements. A &lt;p&gt; Element  The &lt;p&gt; element defines a paragraph in the HTML document:  &lt;p&gt;This is my first paragraph&lt;/p&gt;  The element starts with a start tag: &lt;p&gt; The element content is: This is my first paragraph The element ends with an end tag: &lt;/p&gt; A &lt;body&gt; Element  The &lt;body&gt; element defines the body of the HTML document:  &lt;body&gt; &lt;p&gt;This is my first paragraph&lt;/p&gt; &lt;/body&gt;  The element starts with a start tag: &lt;body&gt; The element content is another element (a paragraph) The element ends with an end tag: &lt;/body&gt; An &lt;html&gt; Element  The &lt;html&gt; element defines the whole HTML document:  &lt;html&gt;  &lt;body&gt; &lt;p&gt;This is my first paragraph&lt;/p&gt; &lt;/body&gt;  &lt;/html&gt;  The element starts with a start tag: &lt;html&gt; The element content is another element (the body) The element ends with an end tag: &lt;/html&gt; Why do We Use Lowercase Tags?  HTML tags are not case sensitive: &lt;P&gt; means the same as &lt;p&gt;. Plenty of web sites use uppercase HTML tags in their pages.  W3Schools use lowercase tags because the World Wide Web Consortium (W3C) recommends lowercase in HTML 4, and demands lowercase tags in newer versions of (X)HTML.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.amaronline.com/2008/11/html-elements/" 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-elements/" target="_blank" title="Share on Facebook" class="liexternal">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2008/11/html-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
