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 `
- ` tag.<ol> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol> "