Target the button and style it.
//one out of many solutions: you can give the button an id
<button id="whatever">click here</button>
//then style it using the id
#whatever {
background-color: yellow;
color: red;
}
Target the button and style it.
//one out of many solutions: you can give the button an id
<button id="whatever">click here</button>
//then style it using the id
#whatever {
background-color: yellow;
color: red;
}