Skip to content

Latest commit

 

History

History

Menu

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

HTML + CSS

Vertical or horizontal menu with responsive properties without the use of JavaScript. Responsive versions display a Burger menu without modifying the component's HTML structure.

<nav role="navigation" class="Menu">
    <ul>
        <li>
            <h1>
                <a href="/#test">Logotype</a>
            </h1>
        </li>
        <li>
            <a href="/#test">
                <span>Test</span>
            </a>
        </li>
    </ul>
</nav>