RSS <title> tag
NOTE: This tag is required in an RSS feed.
Usage
Sets the title of an RSS feed/item. The <title> tag is used within the <channel> tag and the <item> tag (for each RSS item), and in both tags it is required. There are two other tags used within the <channel> and <item> tags (for each RSS item) which are the <description> tag and the <link> tag (both of them required as well).
Example
RSS feed with titles:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>Landofcode.com web tutorials updates</title>
<link>http://www.landofcode.com</link>
<description>Web development tutorials</description>
<item>
<title>Site usability</title>
<link>http://www.landofcode.com/usability.html</link>
<description>Learn how to improve the usability of your site</description>
</item>
<item>
<title>New HTML tutorials</title>
<link>http://www.landofcode.com/html-tutorials/</link>
<description>Five new HTML tutorials have been added</description>
</item>
</channel>
</rss>