Recall & Review
beginner
What HTML tag is used to create an unordered list?
The
<ul> tag is used to create an unordered list in HTML.Click to reveal answer
beginner
How do you add items inside an unordered list?
Use the
<li> tag inside the <ul> tag to add each list item.Click to reveal answer
beginner
What is the default bullet style for unordered lists in most browsers?The default bullet style is a solid black circle (disc) for unordered lists.Click to reveal answer
intermediate
Can unordered lists be nested inside other lists?
Yes, you can nest
<ul> inside <li> elements to create sublists.Click to reveal answer
intermediate
Why should you use semantic HTML tags like
<ul> instead of just styling text to look like a list?Using semantic tags helps browsers and assistive technologies understand the content structure, improving accessibility and SEO.
Click to reveal answer
Which tag starts an unordered list in HTML?
✗ Incorrect
The
<ul> tag is used to start an unordered list.Which tag is used for each item inside an unordered list?
✗ Incorrect
Each list item inside an unordered list uses the
<li> tag.What symbol is shown by default before each item in an unordered list?
✗ Incorrect
Unordered lists show solid black circles (bullets) by default.
Can you put an unordered list inside a list item of another unordered list?
✗ Incorrect
You can nest unordered lists inside list items to create sublists.
Why is it better to use
<ul> for lists instead of just styling text?✗ Incorrect
Using semantic tags like
<ul> improves accessibility and SEO.Explain how to create a simple unordered list with three items in HTML.
Think about the container tag and the item tags inside it.
You got /3 concepts.
Describe why semantic HTML tags like
<ul> are important for web accessibility.Consider how assistive tools use HTML tags.
You got /4 concepts.