Multiple choice technology web 2.0

What tag is used to create an unordered list?

  1. <ul>

  2. <ol>

  3. <li>

  4. <ulist>

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The

    (unordered list) tag creates bulleted lists in HTML.
      creates numbered lists,
    1. is for individual list items inside either
        or
          , and is not a valid HTML tag.

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.