- 1
Bro, I'm still confused about the <ol><ul><li><tr><td> . functions
Beginner
2 Answers
+ 2
Hi, steven marunduri:
<ol>, <ul> and <li> are used for lists. <ol> and <ul> indicate the type of list (ordered or unordered), and <li> introduces an element:
<ol>
<li></li>
<li></li>
</ol>
<td> and <tr> are used in tables, as well as <table>:
<table>
<tr>
<td></td>
<td></td>
</tr>
</table>
Hope that was useful. Keep learning!
+ 5
ol=>ordered list
ul=>unordered list
li=>list
tr=>table row
td=table coulmn.
Use the language name relevant to your question in tags please.