Introduction
Overview
Neoblaze helps you quickly design web layouts. It helps build beautiful product faster with prebuilt components and can be extended with utilities.
It’s responsive, customizable and it’s cool.
Quick start
NPM
Install the Neoblaze CSS npm package by running npm install neoblaze
.
npm install neoblaze
CDN
You can get started quickly by including cdn link.
<link href='https://cdn.jsdelivr.net/npm/neoblaze@0.1.3/dist/css/neoblaze.min.css' rel="stylesheet" crossorigin="anonymous">
Starter template
Use starter template for quick setup.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Neoblaze</title>
<link rel="stylesheet" href='https://cdn.jsdelivr.net/npm/neoblaze@0.1.3/dist/css/neoblaze.min.css'>
</head>
<body>
<section class="section">
<div class="container mx-auto">
<h1 class="heading">Hakuna Matata!</h1>
</div>
</section>
</body>
</html>