Monday, April 18, 2011

Submit Buttons in HTML

The submit button is use to send the information or data in a form to the server after clicked. Their are lots of submit button but this is a simple code that you will see and learn using HTML.

Source Code:

 <html>
<head>
   <title>Submit Buttons</title>
</head>

<body>
   <b>Submit Buttons:</b><br/>

<input type = "submit" name="send" value="submit" >

</body>
</html>

Name - you will set the name of the button to add the program that handles through the server.

Value - you will set the value of what is written.

Output:

Submit Buttons:



This is an example of the submit button and you will apply this sending or adding data to the server.
I hope do you have learn something on my blog. Thanks!

No comments:

Post a Comment