HTML CSS examples for HTML:Form
Example of HTML button
<!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>