Language References
Denotes a list of items, usually a list of links. | HTML 2, 3.2, 4, 4.01, 5 |
HTML Syntax
<menu
class = classname
id = value
style = css properties
title = text
type = disc | circle | square
event = script
>
The MENU element displays a list of items. Like the UL element, MENU is used with the LI element to denote the individual items in the list.
MENU is typically used to provide a list of links.
This element has been deprecated in favor of the UL element.
MENU Members
The following shows how the MENU element may be used.
<menu>
<li><a href="http://www.cnn.com">CNN</a>
<li><a href="http://www.yahoo.com">Yahoo</a>
<li><a href="http://www.msn.com">Microsoft Network</a>
</menu>
which would render on a Web page as
DIR LI OL UL Using Lists in HTML