|
<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>Spam
<LI>Spam and Eggs
<LI>Spam, Spam, Eggs and Spam
</MENU>
|
|
<UL>
<LI>Spam
<LI>Spam and Eggs
<LI>Spam, Spam, Eggs and Spam
</UL>
|
- Spam
- Spam and Eggs
- Spam, Spam, Eggs and Spam
|
|
|