Interview Question

What is iframe?

An iframe embeds one web page inside another.

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

An iframe displays another web page inside the current page. • Its `src` attribute chooses the page to show. • Use a useful `title` for accessibility. • Security settings such as `sandbox` can limit what it may do.

💡 Simple Example

<iframe src="map.html" title="Store location"></iframe>

⚡ Quick Revision

An iframe embeds one web page inside another.