Chapter 19
Beginner
6 min read
Advanced Topics
iFrame & Embedding
The iFrame element lets you embed another HTML page inside your own page — great for maps, videos, and external widgets.
🎯 What you'll learn
✓Embed external pages with
<iframe>
✓Use sandbox for security
✓Embed YouTube, maps and widgets
✓Control iframe size and border
Introduction to iFrame & Embedding
This chapter covers iFrame & Embedding in depth. Understanding this topic is essential for writing clean, modern HTML. Use the live editor below to experiment as you read.
💡 In This Chapter
You will see real code examples, clear
explanations, and
a live editor to practice immediately — no setup needed.
Basic Iframe
Embed a page.
HTML
<iframe
src="https://k2infocom.com"
width="600"
height="400"
title="K2infocom Website"
></iframe>
Youtube Embed
Embed YouTube video.
HTML
<iframe
src="https://www.youtube.com/embed/VIDEO_ID"
allowfullscreen
width="560" height="315"
></iframe>
Try It Yourself
Edit the code below and click ▶ Run to see your changes live.
Live Editor
✎ Editor
👁 Preview
❓ Quick Check — Chapter 19
Which attribute adds a security sandbox to an iframe?
📄 Chapter Summary
- Embed external pages with <iframe>
- Use sandbox for security
- Embed YouTube, maps and widgets
- Control iframe size and border