It created an ordered list.
<OL>
<LI>Pie
<LI>Carrot
<LI>Banana
</OL>
Will make something like this.
1. Pie
2. Carrot
3. Banana
The numbers are made automatically by whichever browser you're using.
<OL> tag is used to create Ordered List in a HTML page. For example: <HTML><BODY> <OL type="I"> <LI>Apple</LI> <LI>Banana</LI> </OL> </BODY></HTML> Will give output as: I. Apple II.Banana
It's called <ol> for "ordered list".
list item. it is the child of either <ul> - unordered list, or <ol> - ordered list in html
I cant able to understand the question what you have asked..I will give the answer what i understand a bit from your question. Sample Code for HTML Ordered List: EX: <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
There is no LIST tag in HTML. There are two tags that can help us create lists. <OL> to create ordered lists <UL> to create unordered lists
<OL> tag is used to create Ordered List in a HTML page. For example: <HTML><BODY> <OL type="I"> <LI>Apple</LI> <LI>Banana</LI> </OL> </BODY></HTML> Will give output as: I. Apple II.Banana
The <ol> tag creates an ordered (i.e. numbered) list in HTML.
Lists in HTML are of 2 types i.e. UL and OL. UL defines the unordered list whereas OL defines ordered list.
A list in HTML defines a collection of items. List can be ordered (OL) or Unordered (UL).
What is the abbreviation mean ol on a
It's called <ol> for "ordered list".
it means mean ol' meanyit means mean ol' meany
HTML tables are created by the <table> command. Inside the table we can use tags like <li>, <ul>,<ol> etc.
list item. it is the child of either <ul> - unordered list, or <ol> - ordered list in html
I cant able to understand the question what you have asked..I will give the answer what i understand a bit from your question. Sample Code for HTML Ordered List: EX: <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol>
Small
HTML also contains a provision of Lists in it. They can be numbered if the option <ol> is used before <li>.