Welcome to Westonci.ca, where your questions are met with accurate answers from a community of experts and enthusiasts. Our Q&A platform offers a seamless experience for finding reliable answers from experts in various disciplines. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.

Which HTML tag would you use to create a list like the one below? red blue green ol ul unorderlist orderlist

Sagot :

Answer:

Unordered list

Explanation:

Given

The html tag needed to create the given list

The list is not properly presented; however, the list in a properly presented question is as follows:

  • red
  • blue
  • green

The code to generate the above output is:

<ul>

        <li>red</li>

        <li>blue</li>

        <li>green</li>  

     </ul>

When a list is generated using the <ul> ... </ul> tag, such list is an unordered list.

Answer:

ul

Explanation:

The < ul > tag is used to create an unordered list.

View image huynhthiendy