freeCodeCamp/guide/english/css/css-frameworks/css-framework-bulma/index.md

1.5 KiB

title
CSS Framework Bulma

CSS Framework Bulma

Bulma is a modern CSS framework based on Flexbox and highly customizable using Sass (SCSS).

Getting Started

Here is a simple HTML template which includes the latest compiled and minified CSS for the Bulma library.

    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Bulma Template</title>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.0.23/css/bulma.min.css">
      </head>
      <body>
        <h1>Hello World</h1>
        <!-- Add all HTML Code here -->
      </body>
    </html>

We have used a CDN in this example, but you can checkout other ways of installing Bulma here.

Learning Resources

  • The official documentation for Bulma is available here.
  • Checkout Bulma's open source GitHub repository here.