Back Main GuestBook Contact Music (JS) Appendix

<MENU></MENU> - Menu Lists
deprecated

A menu list is basically an unordered list without any rendering attributes.The browser determines the type of formatting. Each list item must be preceded by the <LI> tag.

This tag must be closed at the end of the list by typing </MENU>.

Attributes for <MENU>

  %coreattrs %i18n %events

Here is an example of a menu list:

  • This is the first item.
  • This is the second item.
  • This is the third item.

  • Here is the code for the sample above:

    <MENU>
    <LI>This is the first item.
    <LI>This is the second item.
    <LI>This is the third item.
    </MENU>