You are here: HTML > lists
<MENU ...>
| Usage Recommendation |
Use <LI ...> instead. |
<MENU ...> indicates the start a series of choices. It is usually rendered like <UL ...>.
Here's a comparison:
| this code |
produces this |
<MENU>
<LI>Ham
<LI>Ham and Eggs
<LI>Ham, Eggs and Bacon
</MENU>
|
|
<UL>
<LI>Ham
<LI>Ham and Eggs
<LI>Ham, Eggs and Bacon
</UL>
|
- Ham
- Ham and Eggs
- Ham, Eggs and Bacon
|
<DL ...> >>>
| |  | |
|