Styled Button

Example styling a button with CSS.

Preview

Code

<style>
.btn {
  background:blue;
  color:white;
  padding:10px 15px;
  border:none;
}
</style>

<button class="btn">Click Me</button>

More HTML CSS Examples (9)