Getting Started with WebHelpUI

WebHelpUI is a powerful, feature-packed frontend Component Library. Just Think what you want to Build on your website and WebHelpUI Provides it in just a minutes.

Quick start

Get started by including WenHelpUI 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>WebHelpUI demo </tilte>
        </head>
        <body>
            <h1>Namaste šŸ™, world!</h1>
        </body>
    </html>
  3. Include WebHelpUI's CSS and JS. &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>WebHelpUI demo </title>
            <link href="https://webhelp-ui.netlify.app/css/webhelpui.use.css" rel="stylesheet" >
        </head>
        <body>
            <h1>Namaste šŸ™, world!    </h1>
            <script src="https://webhelp-ui.netlify.app/js/webhelpui.use.js" >  </script>
        </body>
    </html>
  5. Namaste šŸ™, world! Open the page in your browser to see your rendered page. Now you can start building with WebHelpUI by creating your own layout, adding dozens of components, and utilizing our official examples.