Have you ever thought about the idea of putting a
valid RSS feed to you web page??? Or even create it on your fresh web site (by
the way, have you created it or are you waiting for a miracle?=)
My today's post will be devoted to the topic of RSS creation.
You know, it isn't so hard to add an RSS feed to
your web page. But why do one need to do that? It's simple: RSS enabled
browsers will then see the link. It will allow readers to subscribe
automatically. There is one more option I want to mention: search engines will
see the feed when it's linked in the HTML.
- Link to Your RSS with a
Standard Link
- Add Your Feed to the HTML
So now I suggest you to acquaint yourselves with these 2 options.
The easiest way to link to one's RSS file is with a standard HTML
link. The simplest link can be
just a text link like:
<a
href="http://webdesign.about.com/library/z_whats_new.rss">Subscribe
to What's New</a> (valid for About.com site) and you'll receive a link, namely "Subscribe to What's
New".
If you want
to make your link look more pleasant, you can use a feed icon for
that. Where one can get them??? You can see and download lots of feed icons
from FeedIcons.com. Have a look
at what we receive in this case:
<a href="http://webdesign.about.com/library/z_whats_new.rss"><img
src="http://0.tqn.com/f/stay/a.gif" alt="Subscribe to What's
New"></a> (valid for About.com site)
You can put these links anywhere on your site
that you want to suggest people subscribe to your feed. Hope you'll try this
method and get good results.
Did you know that many modern browsers have a way to detect RSS feeds giving their readers an opportunity to subscribe to them. But there's a little BUT here: they can only detect the feeds if one "tells" them they are somewhere on the web page or somewhere else. You do this with the link tag in the head of the HTML like in the following example:
<link href="http://webdesign.about.com/library/z_whats_new.rss" rel="alternate" type="application/rss+xml" title="What's New on About.com Web Design / HTML" /> (valid for About.com site)
And only then the web browser reveals the feed. It can also provide a link to the RSS feed. For example, in Firefox you'll see a link to the RSS in the URL box.
That's all for today. Hope this info has somehow helped you or it WILL some time, cause I won't delete my blog=)