HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-03-09
1 <p>This entry is used to describe the to-do list. And the order in which the items in the list are carried out is important! After all, it is inconvenient to feed the cat in the dark or water the cactus from outside. Therefore, another list will prove more suitable for marking up this text fragment: the ordered list.</p>
1 <p>This entry is used to describe the to-do list. And the order in which the items in the list are carried out is important! After all, it is inconvenient to feed the cat in the dark or water the cactus from outside. Therefore, another list will prove more suitable for marking up this text fragment: the ordered list.</p>
2 <p>The &lt;ol&gt; tag (which is short for “ordered list”) is intended for marking up ordered lists. As the name implies, the order of the elements is really important here. Ordered lists are suitable for marking up algorithms, instructions, recipes, competition results, and so on.</p>
2 <p>The &lt;ol&gt; tag (which is short for “ordered list”) is intended for marking up ordered lists. As the name implies, the order of the elements is really important here. Ordered lists are suitable for marking up algorithms, instructions, recipes, competition results, and so on.</p>
3 <p>The items in an ordered list are also marked up with the &lt;li&gt; tag. Code example:</p>
3 <p>The items in an ordered list are also marked up with the &lt;li&gt; tag. Code example:</p>
4 &lt;ol&gt; &lt;li&gt;I am the first item&lt;/li&gt; &lt;li&gt;I am not me if I am not the second item&lt;/li&gt; &lt;li&gt;Am I just third after all of these years? Always!&lt;/li&gt; &lt;/ol&gt;<p>The sequence number is always placed in front of &lt;ol&gt; elements by default.</p>
4 &lt;ol&gt; &lt;li&gt;I am the first item&lt;/li&gt; &lt;li&gt;I am not me if I am not the second item&lt;/li&gt; &lt;li&gt;Am I just third after all of these years? Always!&lt;/li&gt; &lt;/ol&gt;<p>The sequence number is always placed in front of &lt;ol&gt; elements by default.</p>