Get started

Installation

Use npm

npm i bubblegum-css

Use composer

composer require antharuu/bubblegum "v1.0.0"

Use JSdelivr cdn

https://www.jsdelivr.com/package/npm/bubblegum-css

Download from the repository

https://github.com/antharuu/BubbleGum/tree/main/css


Starter template

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta
      name="viewport"
      content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
    />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>

    <link rel="stylesheet" href="css/bubblegum.min.css" />
  </head>
  <body>
    <div _container>
      <div _row>
        <div _col>
          <!-- Your content -->
        </div>
      </div>
    </div>
  </body>
</html>