Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Create an Add-to-Google-Reader Button on Your Website
How To Create an Add-to-Google-Reader Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News Readers and Aggregators
✍: FYIcenter.com
If you like the "Add to Google Reader" button showing on this site, you can create one for your own Web site by following the tutorial exercise below:
1. Create an RSS Atom 1.0 feed file for your site, and make it accessible with a URL. If the feed file is generated dynamically, take the URL of the script that generates the feed file. For example, this site uses an Atom 1.0 feed file at this URL: "http://dev.fyicenter.com/faq/rss/atom.xml".
2. Take this "Add to Google" image file and upload it to your site:
3. Modify the following HTML code and put it into your Web pages:
<a href="http://fusion.google.com/add?feedurl=AtomFeedURL"> <img src="/add_to_google.gif"" border="0" alt="Add to Google Reader"></a>
2007-05-12, 6612👍, 0💬
Popular Posts:
What is the output of printf("%d")? 1. When we write printf("%d",x); this means compiler will print ...
How To Run a JUnit Test Class? A JUnit test class usually contains a number of test methods. You can...
If we have the following in a Java code: String s="abc"; String s2="abc"; Then what will be output o...
What Tools to Use to View HTML Documents? The basic tool you need to view HTML documents is any Web ...
What's the output of the following program? And why? #include main() { typedef union { int a; char b...