<a class="fcc-btn" href="https://www.freecodecamp.org/">freeCodeCamp</a>
/*Centers "button" in the middle of the page*/
body {
height: 100%;
width: 100%;
display: flex;
position: fixed;
align-items: center;
justify-content: center;
}
.fcc-btn {
background-color: #199319;
color: white;
padding: 15px 25px;
text-decoration: none;
}
.fcc-btn:hover {
background-color: #223094;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.