164k views
0 votes
element preserves white space in html. formatted spc space pre What type of HTML list will automatically place a number in front of the items? O a unordered list O numbered list O definition list O ordered list When having a link that points to "../index.html", this means: O index page is one level lower than the current location O index page is two levels higher than the current location O index page is one level higher than the current location O index page is two levels lower than the current location

1 Answer

1 vote

Final answer:

An ordered list in HTML will automatically place a number in front of the items.

Step-by-step explanation:

HTML provides different types of lists to organize and structure content on a webpage. One of these types is the ordered list, which automatically places a number in front of each item. Ordered lists are created using the `

  1. ` tag.<ol> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol> "
User Jay Bharat
by
8.7k points