iframes

allinone

New Member
Messages
227
Reaction score
0
Points
0
can any tell me what is iframe and how to use it in my webpage to show text adds
 

tnl2k7

Banned
Messages
3,131
Reaction score
0
Points
0
An iframe allows you to display a page within another page. To use them, just place this HTML on your page in the body section, where you want it to be displayed; replacing http://www.google.com with the URI of the page you want to display, 600 with the width in pixels of the iframe and 500 with the pixel height of it:

Code:
<iframe src="http://www.google.com" width="600" height="500"></iframe>

-Luke.
 

TechAsh

Retired
Messages
5,853
Reaction score
7
Points
38
*Moved to Programming Help*

I think it fits better here than in Computers and Technology, because it is about Scripting.
 

Smith6612

I ate all of the x10Pizza
Community Support
Messages
6,518
Reaction score
48
Points
48
Some of those advertisements you see on popular sites are iFrames, to help you understand what it is better.
 
Top