Get started with foundation-essential CDN

MIT licensed

Foundation Essential is a lightweight library by Zurb, providing essential features for building responsive, mobile-first websites, including a flexible grid system, responsive images, and pre-styled components.

Tags:
  • foundation
  • essential
  • responsive
  • zurb

Stable version

Copied!

How to start using foundation-essential CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with foundation-essential CDN - cdnhub.io</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-essential@6.2.2/dist/css/foundation.min.css">
  <script src="https://cdn.cdnhub.io/foundation-essential/6.2.2/js/foundation.min.js"></script>
</head>
<body>
  <header class="top-bar">
    <div class="top-bar-left">
      <button class="menu-icon" id="menu-icon"></button>
      <ul class="dropdown menu">
        <li class="menu-text">You are here:</li>
        <li><a href="#">Home</a></li>
        <li><a href="#">Features</a></li>
        <li><a href="#">Pricing</a></li>
      </ul>
    </div>
    <div class="top-bar-right">
      <ul class="dropdown menu">
        <li><a href="#">Sign Up</a></li>
        <li><a href="#">Log In</a></li>
      </ul>
    </div>
  </header>

  <nav class="top-nav" data-topbar role="navigation">
    <ul class="menu">
      <li><a href="#">Home</a></li>
      <li><a href="#">Features</a></li>
      <li><a href="#">Pricing</a></li>
    </ul>
  </nav>

  <main class="content">
    <h1>Welcome to Foundation Essential Example</h1>
    <p>This is a simple example using Foundation Essential with the given CDN link.</p>
  </main>

  <script>
    document.addEventListener("DOMContentLoaded", function() {
      Foundation.init();
    });
  </script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!

All versions