Example of HTML button - HTML CSS HTML

HTML CSS examples for HTML:Form

Description

Example of HTML button

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML button</title> 
 </head> <!--from   w  w  w . java2s .co  m-->
 <body> 
  <form method="post" action=""> 
   <input type="button" value="Click Me"> 
  </form>   
 </body>
</html>

Related Tutorials