+ 6
What does Iframe element do??
I would be happy if you share me a code...
23 ответов
+ 35
in frames <frameset> element is used instead of the <body> element.
General form of frames :-
<noframes>
<body>
<p>frameset not supported</p>
</body>
</noframes>
<frameset cols="50px,20px">
<!--50px & 20px are the size of frames-->
<frame src=" "/>
<frame src=" "/>
</frameset>
</html>
+ 32
+ 28
inline frame is known as iframe.frame not supported in html5.
syntax:-
<iframe src="put here iframe source " name="iframe" width=" " height=" ">
</iframe>
+ 7
Check out this:
https://code.sololearn.com/WtV7rvY8TJyl/?ref=app
+ 5
If you check my link, you will see examples too
+ 4
Well it is used to display webpage within webpage. You can read more on https://www.w3schools.com/tags/tag_iframe.asp
+ 3
it work as a container .
generally used for web page
adjustment.
+ 3
Well, I didn't see frame tag that often, it's used to take stuff from another web page so if you don't need it, you can skip it. For example it could be used to take a post from social network or similar but I'm not a pro :)
+ 3
Ooo thanks anyways
+ 2
Well can you explain how do we use this element in code??
+ 2
Ok now tell me how important it is to learn <frame> element? , I know html 5 does not support it.. That's why I'm asking
+ 2
Thanks elizabeth but I am more curious to know about <frame>element...
+ 2
https://www.w3schools.com/tags/tag_frame.asp
Maybe this?
+ 2
Ok thanks 👍 I will give it a try
+ 2
in frames <frameset> element is used instead of the <body> element.
General form of frames :-
<noframes>
<body>
<p>frameset not supported</p>
</body>
</noframes>
<frameset cols="50px,20px">
<!--50px & 20px are the size of frames-->
<frame src=" "/>
<frame src=" "/>
</frameset>
</html>
+ 2
Thanks elizabeth your code is working but I still don't have any clue what to do on those frames?? I can't seem to put any content on any of those frames.
+ 2
There's part that looks like src="", put webpage link in between " and ",
+ 2
Ok I'll try #Andrija
+ 2
Hey andrija, I put that code on public mode.. Would you mind if you give it a look
+ 2
ok