Ol
class Ol(attributes: Attributes, classes: ClassesInterface, children: List<LiInterface>) : AbstractTagBuilder<TagInterface> , OlInterface
In HTML, the <ol>
tag is used to define an ordered list. An ordered list is a list of items where each item is numbered sequentially. The numbering typically starts at 1 and increments by one for each subsequent item. By default, each list item in an ordered list is preceded by a number.
(ChatGPT, February 26, 2024)