Make RSS Feeds
RSS Designation
Finally you will need to designate the file by indicating it is
an XML file by inserting xml and rss defining tags at the beginning
and </rss> at the very end.
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>The Channel Title Goes Here</title>
<description>The explanation of how the items are related
goes here</description>
<link>http://www.directoryoflinksgohere</link>
<item>
<title>The Title Goes Here</title>
<description>The description goes here</description>
<link>http://www.linkgoeshere.com</link>
</item>
<item>
<title>Another Title Goes Here</title>
<description>Another description goes here</description>
<link>http://www.anotherlinkgoeshere.com</link>
</item>
</channel>
</rss>
When you save the file be sure to save it as an xml file.
Step 4 Making
an RSS Feed
|