Documentation

WELCOME

Welcome to the our documentation! We allow you to make beautiful, modern, and fast websites/applications regardless of your design experience.

A forward-thinking library of web components.

  • Works with all frameworks 🧩
  • Works with CDNs 🚛
  • Fully customizable with CSS 🎨
  • Includes a dark theme 🌛
  • Built with accessibility in mind ♿️
  • Open source 😸
Designed in India by Saurabh & Neha.

Quick Start

Get started by including production-ready CSS and JavaScript via CDN links without the need for any build steps.

  1. Create a new index.html file in your project root. Include the <meta name="viewport"> tag as well for proper responsive behavior in mobile devices.
  2. <!doctype html>
    <html lang="en">
        <head>
            <meta charset="utf-8">
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <tilte>UI-Component library demo </tilte>
        </head>
        <body>
            <h1>Hello world!</h1>
        </body>
    </html>
  3. Include CSS and JS links . &Place the <link> tag in the <head></head> for our CSS, and the <script></script> tag for our JavaScript bundle before the closing </body>
  4. <!doctype html>
    <html lang="en">
        <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>UI-Component library demo </title>
        <link href="https://ui-component-library-123.netlify.app/style/style/uiComponentLibrary.min.css" rel="stylesheet" >
    </head>
    <body>
        <h1>Hello  world!    </h1>
        <script src="https://ui-component-library-123.netlify.app/js/js/uiComponentLibrary.min.js" >  </script>
    </body>
    </html>
  5. Hello world! Open the page in your browser to see your rendered page. Now you can start building by creating your own layout, adding dozens of components, and utilizing our official examples.