Ratn Deo--Dev
Ratn Deo--Dev

Reputation: 1038

Rendering remote content through html frame !

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?

Upvotes: 0

Views: 1126

Answers (3)

user36457
user36457

Reputation:

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

change the size values accordingly.

Upvotes: 1

user64349
user64349

Reputation: 613

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

Upvotes: 0

Rob
Rob

Reputation: 48369

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

Upvotes: 1

Related Questions