Using iFrames
The <iframe>
tag embeds another HTML page within your current page.
- Use it for maps, videos, or external content
- Important attributes:
src
,width
,height
,frameborder
<iframe src="https://example.com" width="600" height="400"></iframe>