xxxxxxxxxx
<!-- html button tag example -->
<button type="button">Click Me!</button>
xxxxxxxxxx
<body>
<button style="height:100px; width:200px; color:#3a87ad; font-size:18px;"> Your text here </button> /
<button style="height:80px; width:180px; color:red; font-size:16px; background-color:#FF6"> Your text here </button> /
<button style="height:60px; width:160px; color:brown; font-size:14px;"> Your text here </button>
</body>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>Add a Button</title>
</head>
<body>
<button>This is a button</button>
</body>
</html>