views:

51

answers:

3

I want to display remote content using html 'frame'.Say i want to display the content of www.news.google.com on a frame ...how to do that?

+1  A: 

W3Schools has a page explaining the basics of the <iframe> tag.

Rob
A: 

Set src attribute of a <iframe> or <frame> to the URL you want to display content from.

A: 
<iframe src="http://news.google.com" height="500" width="500">
text here if iframe is unable to display
</iframe>

change the size values accordingly.

John T