Skip to main content

Installation

To get started quickly with Stybber CSS Framework, you can include the CSS directly from the CDN.

Using the CDN

Add the following <link> tag inside the <head> section of your HTML file:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/njosuedev/stybber@latest/stybber.min.css" />

Basic Example

Here's a simple HTML snippet demonstrating Stybber's typical framework classes:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Stybber Framework Demo</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/njosuedev/stybber@latest/stybber.min.css" />
</head>
<body>
<div class="container">
<h1 class="title">Welcome to Stybber CSS</h1>
<button class="btn btn-primary">Primary Button</button>
<button class="btn btn-secondary">Secondary Button</button>
</div>
</body>
</html>