Posh UI

Introduction

Posh UI is a continuously developing Component Library, built using HTML5 and CSS3 only. You can use it to build awesome UI layouts. To know more about it, look at its GitHub repo.

Quick Start

CSS

To start using the components in your project, Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS.

                
<link
  rel="stylesheet"
  href="https://poshui-components.netlify.app/css/main.css"
/>          
                
              

JS

Many of Posh UI components, like Modal, Toast, and Mobile Navigation require the use of JavaScript to function. For proper functioning of those, Copy-paste the following <script> near the end of your pages, right before the closing </body> tag, to enable them.

                
<script src="https://poshui-components.netlify.app/js/main.js">
</script>