Recall & Review
beginner
What are nested elements in HTML?
Nested elements are HTML tags placed inside other tags. This creates a parent-child relationship, like a box inside another box.
Click to reveal answer
beginner
Why do we use nested elements in HTML?
We use nested elements to organize content logically and structure the page. It helps browsers understand which parts belong together.
Click to reveal answer
beginner
Example: What is the parent element in this code?<br>
<div><p>Hello</p></div>
The <div> is the parent element because it contains the <p> element inside it.
Click to reveal answer
intermediate
Can block elements contain inline elements in HTML?
Yes, block elements like <div> can contain inline elements like <span> or text. This is common for styling parts of text inside a block.
Click to reveal answer
beginner
What happens if you forget to close a nested element properly?
The browser may not display the page correctly because it gets confused about where elements start and end. Always close tags properly to avoid layout issues.
Click to reveal answer
Which of these is a correct example of nested elements?
✗ Incorrect
Option D shows <li> inside <ul>, which is correct nesting. Other options have invalid nesting like a list inside a list item (A), a block element inside a paragraph (C), or a heading inside another heading (D).
What is the child element in this code?<br><section><article>Content</article></section>
✗ Incorrect
The <article> is inside <section>, so it is the child element.
Why is nesting important in HTML?
✗ Incorrect
Nesting helps organize content logically and tells the browser how elements relate.
Which tag can contain other tags inside it?
✗ Incorrect
Parent elements contain child elements inside them.
What is wrong with this nesting?<br><p><div>Text</div></p>
✗ Incorrect
<p> is a block element that should not contain other block elements like <div> inside it.
Explain what nested elements are in HTML and why they are useful.
Think about how boxes can be inside other boxes.
You got /4 concepts.
Describe what can happen if nested elements are not closed properly in HTML.
Imagine forgetting to close a box lid.
You got /4 concepts.