Making a feed for your website
Making a feed really isn't too hard.
a few of the benefits of having a feed are:
Keep your customers or visitors updated on news
Gain links to your site from other webmasters using your feed
Getting traffic to your site from people using news readers
Making a feed manually is easy here's how:
What's used is a language called XML (similar to html).
And here is what a simple feed looks like:
<?xml version="1.0"?>
(lets programs and bots now its an xml file)
<rss version="2.0" >
(lets programs and bots know what version of RSS is being used)
<channel>
(this tag appears once and is the opening tag of your feed)
<title>Feed Title</title>
(the title of your feed)
<description>The explanation of what youre entire feed is about goes here </description>
(an overall explanation of what your feed is about)
<link>http://www.yourlinks.com</link>
Items are the pieces that are displayed in the news reader or on the website that uses your feed
<item>
<description>The description goes here</description>
<link>http://www.linkgoeshere.com</link>
</item>
</channel>
(close the channel)
</rss>
(close RSS)
Now lets use an example, lets say I have a website that sells fishing gear and I want to have a feed with fishing news. It could look like this:
Now after writing this I save the file as an .xml and upload it to the root of my server. For example I named the file and saved it as fishfeed.xml so to view it with a feed reader I point that reader to feedcastfishingsite.com/fishfeed.xml
And when I want to update the feed I simple add a new 'item'.
rss Syndication Feeds
a few of the benefits of having a feed are:
Keep your customers or visitors updated on news
Gain links to your site from other webmasters using your feed
Getting traffic to your site from people using news readers
Making a feed manually is easy here's how:
What's used is a language called XML (similar to html).
And here is what a simple feed looks like:
<?xml version="1.0"?>
(lets programs and bots now its an xml file)
<rss version="2.0" >
(lets programs and bots know what version of RSS is being used)
<channel>
(this tag appears once and is the opening tag of your feed)
<title>Feed Title</title>
(the title of your feed)
<description>The explanation of what youre entire feed is about goes here </description>
(an overall explanation of what your feed is about)
<link>http://www.yourlinks.com</link>
Items are the pieces that are displayed in the news reader or on the website that uses your feed
<item>
<description>The description goes here</description>
<link>http://www.linkgoeshere.com</link>
</item>
</channel>
(close the channel)
</rss>
(close RSS)
Now lets use an example, lets say I have a website that sells fishing gear and I want to have a feed with fishing news. It could look like this:
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<description>News and updates about fishing</description>
<link>http://www.feedcastsfishingsite.com</link>
<item>
<description>On the weekend Jimmy caught several large bass by using the new FeedCast Lure. Using a Penn Real with the ....etc etc</description>
<link>http://www.feedcastfishingsite.com/feedcastlures</link> </item>
</channel>
</rss>
Now after writing this I save the file as an .xml and upload it to the root of my server. For example I named the file and saved it as fishfeed.xml so to view it with a feed reader I point that reader to feedcastfishingsite.com/fishfeed.xml
And when I want to update the feed I simple add a new 'item'.
rss Syndication Feeds



