Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to make the word italic using an inline element.
HTML
<p>This is an [1] element example.</p> Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using block elements like
or which break the line.
Confusing with which makes text bold.
✗ Incorrect
The em tag is an inline element used to emphasize text, usually rendering it in italics.
2fill in blank
mediumComplete the code to make the word bold using an inline element.
HTML
<p>This word is [1].</p> Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using block elements like
which break the line.
Using which italicizes but does not bold.
✗ Incorrect
The tag is an inline element used to make text bold and indicate strong importance.
3fill in blank
hardFix the error in the code to correctly underline the text using an inline element.
HTML
<p>This is an [1] text example.</p> Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'underline' which is not a valid HTML tag.
Using without CSS to underline text.
✗ Incorrect
The tag is the correct inline element to underline text in HTML.
4fill in blank
hardFill both blanks to create a sentence where the first word is italic and the second word is bold.
HTML
<p><[1]>Hello</[1]> <[2]>World</[2]></p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using block elements like
or which break the line.
Mixing up the tags and their purposes.
✗ Incorrect
The tag italicizes text and the tag makes text bold. Both are inline elements.
5fill in blank
hardFill all three blanks to create a sentence with an inline link, italic text, and bold text.
HTML
<p><a href="#">[1]</a> is <[2]>important</[2]> and <[3]>strong</[3]> text.</p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using block elements inside the paragraph.
Confusing the order of and tags.