The input tag does not need an ending tag and can have numerous attributes:
I am really sure that you have certainly heard a lot of, over time, on the Internet.
html<input type="text" /><br />
<input type="password" />
Write something in the boxes above to see the difference.
Ideal for offering the user the option of selecting more than one answer
html<input type="checkbox" /> Milk<br />
<input type="checkbox" /> Water<br />
<input type="checkbox" /> Bread
And I am not saying a music radio, but a small circle which offers the possibility of choosing only one answer for a single question.
html<input type="radio" /> Man<br />
<input type="radio" /> Woman
Here, we will have to give a value to the submit attribute, this being the text that will be shown on the generated button.
html<input type="submit" value="Submit" />
<input type="submit" value="Next step >>" />
Here, same as with the submit button, we will have to give a value, that will be the text that will be shown on the generated button. This button is extremely useful in cases in which the user completes the majority of the forms with wrong information.
html<input type="reset" value="Reset" />
<input type="reset" value="Delete All " />
It must be specified that those forms and buttons will not fully act without the help of PHP or javascript files that will execute the wanted action once one of these buttons is pressed. In the next tutorial, we will go more in-depth with the shown attributes and you will also show some things that we have not yet mentioned.