How to Create an Ordered List in HTML
A.
- Item 1
- Item 2
- Item 3
- B.
: This tag doesn't exist in HTML. - C.
- D. : This tag is used for headings (like a page title).
The correct answer is A. . The
<OL> tag is used to create an ordered list in HTML. This means the list items will be numbered, typically with Arabic numerals.
Here's a simple example:
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
This code will produce a numbered list like this:
Incorrect options:
原文地址: https://www.cveoy.top/t/topic/pk0C 著作权归作者所有。请勿转载和采集!