The html language offers the possibility to create lists <ul>, where each enumeration is defined by the <li> tag. Each list element <li> nests in the associated list <ul>.
Depending on the nature of the list you create, you can adapt the content :
If you do not embed your list item in a <ul> or <ol> block item, your list will not be interpreted correctly by your browser and will not be supported by assistive technologies.
Your list should contain the following information :
For example :
<h1>Example of an ordered list of fruits</h1> <ol> <Banana <orange/li>Orange/li> <pineapple>/pineapple>/li> </ol> This will result in :
Example of an ordered list of fruits
Banana
Orange
Pineapple