Recall & Review
beginner
What HTML tag is used to create a paragraph?
The
<p> tag is used to create a paragraph in HTML. It groups sentences together as a block of text.Click to reveal answer
beginner
How does a browser display paragraphs by default?
Browsers display paragraphs with space above and below them, creating a clear separation between blocks of text.
Click to reveal answer
intermediate
Can you put other HTML elements inside a paragraph?
Yes, you can put inline elements like
<strong> or <em> inside a paragraph, but block elements like <div> should not be inside <p>.Click to reveal answer
beginner
What happens if you write multiple lines of text without
<p> tags?The browser will show the text as one continuous block without spacing. Paragraph tags help separate text into readable chunks.
Click to reveal answer
beginner
Why is it important to use paragraphs in web pages?
Paragraphs improve readability by breaking text into smaller parts. They also help screen readers understand the structure, improving accessibility.
Click to reveal answer
Which tag is correct for creating a paragraph in HTML?
✗ Incorrect
The correct tag for paragraphs in HTML is
<p>. Other tags like <para> or <paragraph> do not exist.What does a browser add around paragraphs by default?
✗ Incorrect
Browsers add space above and below paragraphs to separate blocks of text visually.
Which element can you NOT put inside a
<p> tag?✗ Incorrect
Block elements like
<div> should not be placed inside <p> tags. Inline elements like <strong> and <em> are allowed.What happens if you write text without paragraph tags?
✗ Incorrect
Without paragraph tags, text appears as one continuous block with no spacing between lines.
Why should you use paragraphs in your web page?
✗ Incorrect
Paragraphs break text into smaller parts, making it easier to read and helping screen readers understand the content.
Explain how to create and use paragraphs in HTML and why they are important.
Think about how you write paragraphs in a book or letter.
You got /5 concepts.
Describe what types of elements can be placed inside a paragraph and which cannot.
Consider what fits inside a sentence versus a whole section.
You got /3 concepts.