RSS <title>
, <link>
, and <description>
Elements
Definition and Usage
The <channel>
element describes the RSS feed and has three required child elements:
<title>
- Defines the title of the channel (e.g., tutorialpro Homepage)<link>
- Defines the hyperlink to the channel (e.g., http://www.tutorialpro.org/)<description>
- Describes the channel (e.g., Free website building tutorials)
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>