Latest web development tutorials

RSS title, link, and description elements

RSS Reference RSS complete reference manual

Definition and Usage

<Item> element defines the RSS feed in the article, the element has three required child elements:

  • <Title> - define the project's title (for example: RSS Tutorial)
  • <Link> - Ultra-defined connection to the project (for example: http: //www.w3cschool.cc/rss/)
  • <Description> - description of the project (for example: w3school latest RSS tutorial)

Examples

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">

<channel>
<title>W3CSchool Home Page</title>
<link>http://www.w3cschool.cc</link>
<description>Free web building tutorials</description>
<item>
<title>RSS Tutorial</title>
<link>http://www.w3cschool.cc/rss</link>
<description>New RSS tutorial on W3CSchool</description>
</item>
<item>
<title>XML Tutorial</title>
<link>http://www.w3cschool.cc/xml</link>
<description>New XML tutorial on W3CSchool</description>
</item>

</channel>
</rss>

try it"

RSS Reference RSS complete reference manual