What tag is used to create an unordered list?
-
<ul>
-
<ol>
-
<li>
-
<ulist>
Reveal answer
Fill a bubble to check yourself
A
Correct answer
Explanation
The
- (unordered list) tag creates bulleted lists in HTML.
- is for individual list items inside either
- or
- , and is not a valid HTML tag.
- creates numbered lists,
AI explanation
The HTML <ul> tag (unordered list) creates a bulleted list, with individual items marked by <li> (list item) tags nested inside it. This is correct and standard HTML. <ol> creates an ordered (numbered) list, not unordered. <li> alone only defines a single list item — it must be wrapped in a <ul> or <ol> container, so it doesn't itself create the list. `is not a valid HTML tag at all. Only
- ` is the correct element for defining an unordered list.