HTML/CSS/Form Tags/button
"button" Example
<html>
<head>
<title>button element example</title></head>
<body>
<center>
<button type="button"
id="myButton"
style="font-weight:bold;
color:darkblue;
background:cyan;
border-color:blue;
font-family:Verdana;">
Button</button>
</center>
</body>
</html>
Form button with label
<html>
<body>
<form>
<input type="button" value="Hello world!">
</form>
</body>
</html>