Add iframe news plugin for blogger
Here's a step-by-step guide to add an iframe news plugin to your Blogger blog:
Plugin: iframe News
Description: iframe News is a simple plugin that allows you to embed news feeds from various sources, such as Google News, Yahoo News, and more, into your Blogger blog using an iframe.
Installation:
-
Create a new page or post: Go to your Blogger dashboard and create a new page or post.
-
Add a new widget: Click on the "Add a gadget" button and select "HTML/JavaScript" from the list of available widgets.
-
Add the iframe code: Copy the following code and paste it into the HTML/JavaScript widget:
<iframe src="https://www.iframe-news.com/widget.php?feed=[YOUR_FEED]&width=600&height=400" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" width="600" height="400"></iframe>
Replace
[YOUR_FEED]
with the feed URL of the news source you want to embed (e.g.,https://news.google.com/news?ned=us&hl=en
for Google News). -
Customize the widget: You can customize the widget by adjusting the width and height of the iframe, as well as the feed URL.
-
Save the widget: Click on the "Save" button to save the widget.
Tips and Variations:
- You can add multiple iframe widgets to your blog by creating multiple HTML/JavaScript widgets and customizing each one with a different feed URL.
- You can also add a title to your iframe widget by adding the
title
attribute to the iframe code, like this:<iframe src="https://www.iframe-news.com/widget.php?feed=[YOUR_FEED]&width=600&height=400" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" width="600" height="400" title="News Feed"></iframe>
- If you want to add a border around the iframe, you can add the
border
attribute, like this:<iframe src="https://www.iframe-news.com/widget.php?feed=[YOUR_FEED]&width=600&height=400" frameborder="1" scrolling="no" marginwidth="0" marginheight="0" width="600" height="400"></iframe>