Skip to main content

Termin buchen

Schreibe mir ganz einfach per Whatts App oder Mail und buche dir einen Termin.

Einfach unten einer der Buttons drücken, den vorgefertigten Text anpassen und absenden.

Termine Buchen












    Adresse

    Healthy Massage
    Walterhofstrasse 3
    4656 Starrkirch – Wil

    <style>
      .contact-box {
        display: inline-flex;
        align-items: center;
        background-color: transparent;
        border: 1px solid #d9d2cd;
        color: #000;
        padding: 10px 15px;
        border-radius: 4px;
        text-decoration: none;
        font-family: sans-serif;
        font-size: 13px;
        text-transform: uppercase;
        transition: background-color 0.3s ease;
      }
    
      .contact-box:hover {
        background-color: #f1eae6;
      }
    
      .contact-box svg {
        width: 14px;
        height: 14px;
        margin-right: 8px;
        fill: currentColor;
      }
    
      /* Zentrierung mobil */
      @media (max-width: 768px) {
        .contact-box {
          margin: 0 auto;
          display: table;
        }
      }
    </style>
    
    <a id="email-link" class="contact-box" href="#">
      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
        <path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h12v2H3v-2z"/>
      </svg>
      E-Mail schreiben
    </a>
    
    <script>
      document.addEventListener("DOMContentLoaded", function () {
        const user = "mail";
        const domain = "healthymassage.ch";
        const email = user + "@" + domain;
        const link = document.getElementById("email-link");
        link.setAttribute("href", "mailto:" + email);
      });
    </script>