I've been writing some HTML code to develop a website. I want to have some buttons link to other parts of the page. The button is in a "Meet the Team" style. Here is the code:
<div class="column">
<div class="card">
<div class="container">
<img src="button1.png" alt="Button" style="width:100%">
<div class="centered"><h1> Lorem Ipsum </h1></div>
<p class="title">Lorem ipsum dolor sit amet, consectetur adipiscing
elit.</p>
<p><button class="button">Button</a></button></p>
</div>
</div>
I've tried to get it to link to a page but I can't find anything (I'm new to HTML). Maybe one of you can help? Thanks!