Create an xml file with the following format. There can be up to 15 "items" in your list. Run a search for "rss validator" and check your file to be sure you have it right before you submit it.
Code:
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>Title for the whole channel here</title>
<description>Description for the whole channel here</description>
<link>http://www.domain.com</link>
<item>
<title>A title for each of up to 15 items on this channel</title>
<description>Repeat the entire block including the item tags once for each item</description>
<link>http://www.domain.com/page.html</link>
</item>
<!--// Repeat the above <item></item> block once for each of up to 15 feeds in this file //-->
</channel>
</rss>
Upload it as rss.xml or something else and you are ready to submit your feeds to the feed engines. You will refer to it as http://www.domain.com/rss.xml once it is in place.
|