html button
<!DOCTYPE html>
<html>
<head>
<button class="Button">YOUR TEXT HERE</button>
<style>
.Button {
background-color: black;
border: none;
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 4px;
cursor: pointer;
border: 8px;
}
</style>
</head>
</html>