Integration Preview
Basic Button
A simple renters-insurance 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="renters-insurance"
data-show-modal-on-load="0"
data-button-text="Get renters insurance"
data-button-class="quote-btn"
data-street_address="2212 S 101ST Dr"
data-street_address_2=""
data-city="Tolleson"
data-state="AZ"
data-postal_code="85353"
data-contact_first_name="John"
data-contact_last_name="Doe"></div>
</body>
</html>