Some styles don’t work on CSS so I have to add them in HTML

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;
}

Leave a Comment