Integration Preview
Basic Button
A simple quote button that can be styled with your own CSS.
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Basic Button — Steadily</title>
  <!-- Required: Steadily JS -->
  <script src="https://demo.steadilypartner.com/partner/v3.js" async defer></script>

  <!-- Optional: Custom styles -->
  <style>
    .steadily-quote-button .quote-btn {
      font-family: sans-serif;
      border-radius: 4px;
      border: 0px;
      padding: 8px 24px;
      background-color: #3145d5;
      color: #ffffff;
      text-decoration: none;
    }
    .steadily-quote-button .quote-btn:hover {
      cursor: pointer;
      background-color: #2d3c8f;
    }
  </style>
</head>
<body>
    <div class="steadily-quote-button" data-product="landlord-insurance"
    data-show-modal-on-load="0"
    data-button-text="Get landlord insurance"
    data-button-class="quote-btn"></div>
</body>
</html>