Make RSS Feeds
What do Tags Mean (step 3)
If you find creating a feed by hand difficult consider using FeedForAll
as it will create all of the tags for you!
Sub Channel Elements - Item <item></item>
Multiple Items generally exist in a channel each containing headlines:
| title |
The title of the item similar to the title of a webpage.
example - New RSS Creation Tool
tag - <title></title>
|
| description |
The phrase or sentence describing
the content of item.
example - FeedForAll generates rss feeds so webmasters do
not need to struggle with feed creation
tag - <description></description> |
| link |
The url to the html website
example - http://www.feedforall.com
tag - <link></link> |
| pubDate |
The publication date for the content in the channel. The
date must confirm to RFC 822 format
example - Aug, 22 2004 00:12:30 EST
tag - <pubDate></pubDate>
|
| category |
Category or categories
that the channel's contents fit.
example - software
tag - <category></category> |
Contents of Channel tags based on above:
<item>
<title> New RSS Creation Tool </title>
<description> FeedForAll generates rss feeds so webmasters
do not need to struggle with feed creation </description>
<link> http://www.feedforall.com </link>
<pubDate> Aug, 22 2004 00:12:30 EST </pubDate>
<category> software </category>
</item>
consider FeedForAll
for RSS feed creation
|