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 href="mailto:[email protected]?subject=Website booking Online-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
CodePudding user response:
href
work only on <a>
tag.
So try that :
<a href="mailto:[email protected]?subject=Website booking Online-Zoom">
<ol >Book Here</ol>
</a>