Skip to Main Content

GW Button – Solid

Here is an example of the button once pasted into the editor:

Schedule a free Inspection

Code snippet

<a href="https://www.groundworks.com/contact-us" target="_blank" rel="noopener"
   style="
    display: inline-block;
    padding: 16px 48px; 
    font-size: 16px;  /* Edit font size */
    font-weight: 600;
    width: 300px;  /* Edit button width */
    background-color: #172f53;
    font-family: Helvetica, sans-serif;
    color: #fff;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
"
   onmouseover="this.style.backgroundColor='#bde3a8'; this.style.color='#172f53';" 
   onmouseout="this.style.backgroundColor='#172f53'; this.style.color='#fff';">

 <!--- Update Button Text Start -->

  Schedule a free Inspection

 <!-- Update Button Text End -->

</a>

GW Button – Border

Schedule a free Inspection
<a href="https://www.groundworks.com/contact-us" target="_blank" rel="noopener"
   style="
    display: inline-block;
    padding: 16px 48px; 
    font-size: 16px;  /* Edit font size */
    font-weight: 600;
    width: 320px; /* Edit button width */
    background-color: transparent;
    font-family: Helvetica, sans-serif;
    color: #172f53;
    text-align: center;
    border: 2px solid #72b1c8;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none; 
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
"
   onmouseover="this.style.backgroundColor='#bde3a8'; this.style.color='#172f53'; this.style.border='2px solid #bde3a8';" 
   onmouseout="this.style.backgroundColor='transparent'; this.style.color='#172f53'; this.style.border='2px solid #72b1c8';">

 <!--- Update Button Text Start -->

  Schedule a free Inspection

 <!-- Update Button Text End -->

</a>