Which one Rss? Indian one or Web one? Search for "RSS Feed" in Google. You will get tons of help. This is an useful help for you-> http://www.xml.com/pub/a/2002/12/18/dive-into-xml.html
RSS (Really Simple Syndication) is a family of web feed formats used to publish frequently updated works in XML format such as blog entries, news headlines, website update. <?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>RSS Title</title> <description>This is an example of an RSS feed</description> <link>http://www.someexamplerssdomain.com/main.html</link> <lastBuildDate>Mon, 06 Sep 2010 00:01:00 +0000 </lastBuildDate> <pubDate>Mon, 06 Sep 2009 16:45:00 +0000 </pubDate> <item> <title>Example entry</title> <description>Here is some text containing an interesting description.</description> <link>http://www.wikipedia.org/</link> <guid>unique string per item</guid> <pubDate>Mon, 06 Sep 2009 16:45:00 +0000 </pubDate> </item> </channel> </rss> Code (markup): Here the steps to Generate RSS Feed for Website.