Get started with flexnav CDN

http://unlicense.org/ licensed

Flexnav is a lightweight and flexible library for creating horizontal and vertical navigation menus with customizable transitions and animations.

Tags:
  • responsive
  • menu
  • nav

Stable version

Copied!

How to start using flexnav CDN


<!DOCTYPE html>
<html>
<head>
    <title>Get started with flexnav CDN - cdnhub.io</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css">
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <nav class="flexnav">
        <ul class="flexnav-container">
            <li class="flexnav-item">
                <a href="#home" class="flexnav-link">Home</a>
            </li>
            <li class="flexnav-item">
                <a href="#services" class="flexnav-link">Services</a>
            </li>
            <li class="flexnav-item">
                <a href="#about" class="flexnav-link">About</a>
            </li>
            <li class="flexnav-item">
                <a href="#contact" class="flexnav-link">Contact</a>
            </li>
        </ul>
    </nav>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script src="https://cdn.cdnhub.io/flexnav/1.3.3/js/jquery.flexnav.min.js"></script>
    <script src="scripts.js"></script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!

All versions