+ 2
what is the function about <iframe> element?
3 Respuestas
+ 3
<iframe> is a container to handle complete nested html document, usualy remotly, but not always... You can dinamically write inside also ;)
+ 1
<iframe> is to display remote content on your webpage.
Like here:
<iframe src="https://www.yahoo.com">
<p>Your browser does not support iframes.</p>
</iframe>
+ 1
thank's for helping me.