How to create link that look like a button in HTML

3 Answers

0 votes
<a href="https://seek4info.com"><button>seek4info</button></a>

 



answered Jun 13, 2021 by avibootz
0 votes
<a href="https://seek4info.com" class="btn">seek4info</a>
.btn{
    padding: .6rem;
    background: lightblue;
    color: black;
    border-style: double;
}

 



answered Jun 13, 2021 by avibootz
0 votes
<button onclick="location.href='https://seek4info.com'">seek4info</button>

 



answered Jun 13, 2021 by avibootz

Related questions

...