+ 3
Helpppp HTML
I have this quiz, to write a list. I write these two answers, and its says I am wrong! <ul> <li>list </li> </ul> <il> <li>list2 </li> </il>
2 odpowiedzi
+ 13
Snow C there is no html tag <il>
either <ol> for ordered list or <ul> for unordered list and <li> list names
<il> is wrong
+ 15
It is like this:
<ul>
<li>list</li>
<li>list2</li>
</ul>
Note: It is an unordered list.