Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to add a page title in HTML.
No-Code
<title>[1]</title> Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Putting HTML tags inside the tag instead of plain text.
Confusing with or tags.
✗ Incorrect
The
2fill in blank
mediumComplete the meta tag to set the page description.
No-Code
<meta name="description" content="[1]">
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using charset or viewport values inside the description meta tag.
Leaving the content attribute empty.
✗ Incorrect
The description meta tag provides a summary of the page content for search engines.
3fill in blank
hardFix the error in the meta charset tag.
No-Code
<meta charset=[1]> Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Not using quotes around the charset value.
Using single quotes instead of double quotes.
✗ Incorrect
The charset value must be inside double quotes for valid HTML syntax.
4fill in blank
hardFill both blanks to set the viewport for responsive design.
No-Code
<meta name="[1]" content="[2]">
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'description' or 'charset' as the name for viewport settings.
Leaving out width=device-width in content.
✗ Incorrect
The viewport meta tag controls layout on mobile devices. The name is "viewport" and content sets width and scale.
5fill in blank
hardFill all three blanks to create a meta tag for author information.
No-Code
<meta name="[1]" content="[2] [3]">
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'description' instead of 'author' for the name attribute.
Putting only first or last name instead of full name.
✗ Incorrect
The author meta tag uses name="author" and content with the author's full name.