Latest web development tutorials

RSS title, link, and description elements

RSS Reference RSS complete reference manual

Definition and Usage

<Channel> element describes the RSS feed, this element has three required child elements:

  • <Title> - defined channel titles (for example: w3school Home)
  • <Link> - Ultra-point connection definition channels (for example: http: //www.w3cschool.cc/)
  • <Description> - description channel (for example: free website building tutorials)

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>

</channel>

</rss>

try it"

RSS Reference RSS complete reference manual