0
0
HTMLmarkup~5 mins

Paragraphs in HTML - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
A&lt;text&gt;
B&lt;p&gt;
C&lt;paragraph&gt;
D&lt;para&gt;
What does a browser add around paragraphs by default?
AExtra space above and below
BBold text
CUnderline
DBackground color
Which element can you NOT put inside a <p> tag?
A<code>&lt;div&gt;</code>
B<code>&lt;em&gt;</code>
C<code>&lt;strong&gt;</code>
DText
What happens if you write text without paragraph tags?
AText is automatically bold
BText is underlined
CText is hidden
DText appears as one block without spacing
Why should you use paragraphs in your web page?
ATo change font color
BTo make text blink
CTo improve readability and accessibility
DTo add images
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.