+ 2
How i add some link to the buttons?
5 odpowiedzi
+ 4
You put the <a> tag inside of the button tag. You could also if you want different text size, put a tag such as <h3> inside of the <a> tag also. The example code:
<button><a href="#LinkGoesHere"></a></button>
+ 2
Thanks
+ 1
wrap the button tags within the <a> tags
<a href="#your-link">
<button>Click</button>
</a>