Button
There are two buttons that can be created in HTML.one is called submit button.and other is reset button.
parameters of submit button
OutputThere are two buttons that can be created in HTML.one is called submit button.and other is reset button.
parameters of submit button
- name:
denotes the name of the submit the button. - value:
It is writing some text on the text on button. - align:
specifies the alignment of the buttons.
Example
<html> <head> <title> HTML Button </title> </head> <body> <form name='form1'> <div align='left'> Enter the fruit name <textarea cols="40" rows="6"> <input type='submit' name='' value='Submit'> <input type='reset' name='check' value='reset'> </div> </form> </body> </html> |
0 comments:
Post a Comment