HTML COURSE โข LESSON 23
HTML Iframes
An iframe displays another web page or document inside the current page.
Basic Iframe
Iframe Example
<iframe
src="page.html"
>
</iframe>
Set Width and Height
Iframe Size
<iframe
src="page.html"
width="600"
height="400"
>
</iframe>
Remove the Border
Iframe Border
<iframe
src="page.html"
style="
border: none;
"
>
</iframe>
Use an Iframe as a Link Target
Iframe Target
<iframe
name="content-frame"
>
</iframe>
<a
href="lesson.html"
target="content-frame"
>
Open Lesson
</a>