Cuvrd Low Code Widgets

Fancy CSS Quote Panel Widget Example


Here's the rendered widget ...


... and the code that makes it happen


HTML

                <link rel="stylesheet" href="https://widget.cuvrd.com/vsc-quote-panel@1.0/dist/cuvrd-widget/style.css" />
<script type="module" src="https://widget.cuvrd.com/vsc-quote-panel@1.0/dist/cuvrd-widget/cuvrd-widget.es.js"></script>
<script type="module">
 const widget = new CuvrdWidget({
    container: '#id-of-your-container',
    env: 'prod',
	apiKey: 'your-api-key-here',
	whitelabel: 'your-whitelabel-here',
        style: {
          font: 'audiowide',
          bgColor: 'rgba(207, 226, 255, .7)',
          primaryColor: '#0345A0',
          secondaryColor: 'red',
          buttonTextColor: '#ffffff',
        }
  });
</script>