'menu' creates a list of items : menu « Tags « HTML / CSS






'menu' creates a list of items

    
<html>
<head>
<title>menu element example</title>
</head>
<body>
    <menu type="square">
        <li>first item</li>
        <li>second item</li>
        <li>third item</li>
        <li>fourth item</li>
        <li>fifth item</li>
    </menu>
</body>
</html>
    
      
      








Related examples in the same category