Introduction to Iceberg
Iceberg is an open-souce CSS library that provides plenty of UI components to enrich your web applications.

Installation
To use Iceberg UI in your project, copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS.
                
<link rel="stylesheet" href="https://iceberg-ui.netlify.app/styles.css">
                
            

Customization
In order to override Iceberg UI's base classes, users can add their own class to the pre-existing classes, and style them seperately.
                
<style>
  .custom { background-color: #ed602d; }
</style>
<button class="btn btn-primary custom">Custom Button</button>