195k views
1 vote
Richard owns a chain of hardware stores. He wants to update the store website and write a numbered list of all the items in his store. Which tag will he use for this purpose? A.
  • B.
  • C.
    1. D.
    2. E.


User Hollownest
by
5.1k points

2 Answers

5 votes
Use ordered list
  1. tag and put each item inside of a list item
  2. tag.
User Keavon
by
5.4k points
4 votes

Answer:

Use <ol> and <li> tags

Step-by-step explanation:

<!-- ordered list tag i.e. '<ol>' -->

<ol>

<!-- list item tag i.e. '<li>' -->

<li> A </li>

<li> B </li>

<li> C </li>

<li> D </li>

<li> E </li>

</ol>

Richard owns a chain of hardware stores. He wants to update the store website and-example-1
User Vertex
by
5.1k points