Answers for "how to make an a tag look like a button"

4

button tag with a tag

<a href='https://www.freecodecamp.org/'><button>Link To freeCodeCamp</button></a>
Posted by: Guest on April-01-2021
2

make anchor tag as button

.button {
    display: block;
    width: 115px;
    height: 25px;
    background: #4E9CAF;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    line-height: 25px;
    cursor: pointer;
}
Posted by: Guest on May-03-2021

Code answers related to "how to make an a tag look like a button"

Browse Popular Code Answers by Language