Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 510 Bytes

README.md

File metadata and controls

21 lines (19 loc) · 510 Bytes

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>