Search code examples
htmlcssbootstrap-4mailto

I can no longer get the links to work in my webpage


Firstly I apologise as I have only limited experience of HTML, CSS and Bootstrap so this may be something really simple that I have overlooked.

I created a website for a friend that has mailto links on a button. They were working but now they don't. Can't figure what I have done that stops it from working.

The code is:

<ol class="align-content-center btn btn-lg btn-secondary button2 mt-3" href="mailto:hello@wandering.yoga?subject=Website%20booking%20Online-Zoom">Book Here</ol>

The mailto link works by itself in isolation but clicking on the "Book now " button does nothing.

The page is here Yoga Website


Solution

  • href work only on <a> tag.

    So try that :

    <a href="mailto:hello@wandering.yoga?subject=Website%20booking%20Online-Zoom">
        <ol class="align-content-center btn btn-lg btn-secondary button2 mt-3">Book Here</ol>
    </a>