<!--use of ordered list in html-->
<!--styles may be in "upper-alpha(A),lower-alpha(a),upper-roman(I),lower-roman(i),1 "-->
<ol type="a">
<li>Apple</li> <!--li stands for list item-->
<li>Banana</li>
<li>Orange</li>
<li>Papaya</li>
</ol>
<ol type="upper-roman" start="2">
<li>Apple</li>
<li>Banana</li>
<li>Orange</li>
<li>Papaya</li>
</ol>
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.