Feedage - RSS Feeds directory

Search Feedage
       Advanced

    Home    MyFeedage    login    Help    Feedage feeds
 
Quick links
Feedage BuzzsawBuzzSaw
Feedage FeedzoneFeedZone
Feedage PodzonePodZone
My GroupsMy Groups
My FeedsMy Feeds
Searched termsSearched
E-mail ThisE-mail This
E-mail ThisRSS Alerts
Bookmark
Bookmark with Del.icio.us Digg it Bookmark with Furl Submit to Reddit Bookmark with Yahoo Bookmark with Technorati
Categories
All Categories...

Arts
  Animation ,   Antiques ,   Architecture ...
Business & Economy
  Economics ,   Global Economy ,   Investing ...
Computer
  Blogs ,   Desktop computer ,   Hardware ...
Games
  Arcade Game ,   Board Game ,   Card Game ...
Government
  Canadian Government ,   Elections ,   Federal Government ...
Health
  Addictions ,   Aging ,   Alternative Medicine ...
News
  Columns & Columnists ,   Internet Broadcast ,   Media ...
Recreation
  Aviation ,   Boating ,   Bowling ...
Reference
  Almanacs ,   Bibliography ,   Dictionary ...
Regional
  Africa ,   Asia ,   North America ...
Science
  Astronomy ,   Biology ,   Chemistry ...
Shopping
  Autos ,   Beauty Products ,   Clothing ...
Society
  Education ,   Law Enforcement ,   People ...
Sports
  Soccer ,   Baseball ,   Basketball ...

All Categories...


 
RSS Examples

 

HOME


RSS 0.91 example:

<?xml version="1.0"?>
<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91">
<channel>

<language>en</language>
<description>Brief description</description>
<link>http://www.example.com/</link>
<title>title</title>

<image>
<link>http://www.example.com/</link>
<title>Title</title>
<url>http://www.example.com/path/file.gif</url>
</image>

<item>
<title>Item Title</title>
<link>http://www.example.com/first/item</link>
<description>Description of this item</description>
</item>

</channel>
</rss>

Top


Rss 1.0 example:

<?xml version="1.0"?>

<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://purl.org/rss/1.0/">

<channel rdf:about="http://www.xml.com/xml/news.rss">
<title>Title</title>
<link>http://www.example.com/</link>
<description>Brief description</description>

<image rdf:resource="http://www.example.com/path/file.gif" />

<items>
<rdf:Seq>
<rdf:li resource="http://xml.com/pub/2000/08/09/xslt/xslt.html" />
<rdf:li resource="http://xml.com/pub/2000/08/09/rdfdb/index.html" />
</rdf:Seq>
</items>

<textinput rdf:resource="http://www.example.com" />

</channel>

<image rdf:about="http://www.example.com/path/file.gif">
<title>Title</title>
<link>http://www.example.com</link>
<url>http://www.example.com/path/file.gif</url>
</image>

<item>
<title>Processing Inclusions with XSLT</title>
<link>http://xml.com/pub/2000/08/09/xslt/xslt.html</link>
<description>Description</description>
</item>

<item >
<title>Title</title>
<link>http://www.example.com</link>
<description>Description</description>
</item>

</rdf:RDF>

Top


RSS 1.1 example:

 

Top


RSS 2.0 example:

 

Top


ATOM example:

<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

<title>Example Title</title>
<link href="http://example.org/"/>
<updated>2006-10-10T20:32:00Z</updated>
<author>
<name>Author Name</name>
</author>

<entry>
<title>Title of first entry</title>
<link href="http://example.org/path/file.ext"/>
<updated>2006-10-10T20:32:00Z</updated>
<summary>Summary text</summary>
</entry>

</feed>

Top


OPML example:

 

Top