Example of HTML From Submit and Reset Button - HTML CSS HTML

HTML CSS examples for HTML:Form

Description

Example of HTML From Submit and Reset Button

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials