0
0
HTMLmarkup~5 mins

Unordered lists in HTML - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
A&lt;list&gt;
B&lt;ul&gt;
C&lt;li&gt;
D&lt;ol&gt;
Which tag is used for each item inside an unordered list?
A&lt;li&gt;
B&lt;ul&gt;
C&lt;item&gt;
D&lt;ol&gt;
What symbol is shown by default before each item in an unordered list?
ASolid black circles (bullets)
BLetters
CNumbers
DNo symbol
Can you put an unordered list inside a list item of another unordered list?
ANo, nesting lists is not allowed
BOnly ordered lists can be nested
CYes, nesting unordered lists is allowed
DOnly one list per page is allowed
Why is it better to use <ul> for lists instead of just styling text?
AIt uses less code
BIt looks prettier
CIt makes the page load faster
DIt helps screen readers and search engines understand the content
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.