Easy Tutorial
❮ Rss Examples Rss History ❯

RSS <title>, <link>, and <description> Elements



Definition and Usage

The <channel> element describes the RSS feed and has three required child elements:


Example

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
  <title>tutorialpro.org Homepage</title>
  <link>http://www.tutorialpro.org</link>
  <description>Free programming tutorials</description>
</channel>
</rss>

❮ Rss Examples Rss History ❯