Reputation: 1038
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
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
Reputation: 613
Set src
attribute of a <iframe>
or <frame>
to the URL you want to display content from.
Upvotes: 0