Several of our customers have asked us to pull industry information to their site as a resource for their customers. RSS feeds are one of the best and lowest maintenance way that we've found to do this.
The HTML & Javascript
<html>
<head>
<title>Multiple RSS Feeds with Google Feed API on Your Website</title>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("feeds", "1");
function OnLoad() {
// Create a feed control
var feedControl = new google.feeds.FeedControl();
// Add two feeds.
feedControl.addFeed("http://www.theadvertiser.com/rssfeeds/topstories.xml", "The Daily Advertiser");
feedControl.addFeed("http://feeds.people.com/people/headlines", "People Magazine");
feedControl.addFeed("http://sports.espn.go.com/espn/rss/news", "ESPN");
// Draw it.
feedControl.draw(document.getElementById("google_feeds"));
}
google.setOnLoadCallback(OnLoad);
</script>
</head>
<body>
<h1>Multiple RSS Feeds with Google Feed API </h1>
<h2>on Your Business Catalyst Website </h2>
<div id="google_feeds"></div>
</body>
</html>
The CSS
<style>
.gfc-resultsHeader {border:none;}
.gfc-title {font-size: 18px; font-weight:bold; margin-top:12px;}
</style>