Widgets

We have created widgets that can easily be added to your site, simply by copying and pasting the code below. There are two widget formats, wide and narrow. If you need any assistance, feel free to reach out and we’ll be happy to help.

Wide widget

Here is how the wide widget will appear. To use this widget, simply copy and paste the snippet below into your site’s code where you’d like it to appear. Change “Example Name” to your home’s name.

If you’re at the beginning of one of life’s most difficult processes and may need a hand to help we are here for you. We’ve partnered with to provide support to your family and your loved one’s extended community. Sign up

<!-- Everly Widget (wide) - Start -->
<div style="width: 600px; font-size: 20px; font-family: 'Times New Roman'">
<a href="https://everly.care/welcome" target="_blank"
><img src="https://everly.care/widget-wide.png" width="600px"
/></a>

<p>
If you're at the beginning of one of life's most difficult processes and may need a hand to help we are here for you. We've partnered with <span id="everly-partner_name"></span> to provide support to your family and your loved one's extended community. <a href="https://everly.care/welcome" style="color: darkblue" target="_blank">Sign up</a>
</p>

<script type="text/javascript">
const partner_name = "Example Name";
const span = document.getElementById("everly-partner_name");
span.textContent = partner_name;
</script>
</div>
<!-- Everly Widget (wide) - End -->

Narrow widget

Here is how the narrow widget will appear. To use this widget, simply copy and paste the snippet below into your site’s code where you’d like it to appear. Change “Example Name” to your home’s name.

If you’re at the beginning of one of life’s most difficult processes and may need a hand to help we are here for you. We’ve partnered with to provide support to your family and your loved one’s extended community.
Sign up

<!-- Everly Widget (narrow) - Start -->
<div style="width: 300px; font-size: 18px; font-family: 'Times New Roman'">
<a href="https://everly.care/welcome" target="_blank"><img src="https://everly.care/widget-narrow.png" width="300px"/></a>

<p>If you're at the beginning of one of life's most difficult processes and may need a hand to help we are here for you. We've partnered with <span id="everly-partner_name"></span> to provide support to your family and your loved one's extended community.<br/> <a href="https://everly.care/welcome" target="_blank" style="color: darkblue">Sign up</a></p>

<script type="text/javascript">

// Change "Example Name" below
const partner_name="Example Name";

const span=document.getElementById("everly-partner_name");
span.textContent=partner_name;
</script>
</div>
<!-- Everly Widget (narrow) - End -->