hai guys please any one of you help me to create a page like this
http://rss.news.yahoo.com/rss/topstories
this is RSS page.i need to create a books which was in yellow color. can you help me please.....
with regards
sridhar
Printable View
hai guys please any one of you help me to create a page like this
http://rss.news.yahoo.com/rss/topstories
this is RSS page.i need to create a books which was in yellow color. can you help me please.....
with regards
sridhar
An RSS feed is nothing more than data put out in an XML format, with some specific tags. If you view the source of that feed (and others), you should be able to figure out how to put it together.
-tg
In addition, you RSS is data feed and contains no information about presentation (i.e: colour). In general I believe that in browsers specify the layout, however it might be possible to to specify an XSL of CSS style sheet.
Have a look at this link for XSL specifications and info: http://www.rss-specifications.com/
The "yellow" thing you're referring to is, I assume, the RSS icon in your browser. Once you create your RSS feed, you should create a <link> in your page's <head> to specify the location of the feed. For example, this page has the following link:
The browser reads this and appropriately displays the 'yellow' icon.Code:<link rel="alternate" type="application/rss+xml" title="VBForums RSS Feed" href="external.php?type=RSS" />