Button Element



Write a HTML code to create type of buttons on from.

                          
<html>
  <head>
    <title>Button Demo</title>
  </head>
<body>

<form name="frm1">

    <input type="submit" name="s" value="SUBMIT">
    <input type="reset" name="c" value="RESET">
    <input type="button" name="b" value="CLICK">

  </form>        
</body>
</html>

Output: