HTML CSS examples for HTML:Form
Example of HTML From Submit and Reset Button
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML From Submit and Reset Button</title> </head> <!--from w w w . j a v a2 s .c o m--> <body> <form action="../html/action.php" method="post" id="users"> <label for="first-name">First Name:</label> <input type="text" name="first-name" id="first-name"> <input type="submit" value="Submit"> <input type="reset" value="Reset"> </form> </body> </html>