HTML Buttons create:
- Classic Buttons you need, especially in the context of a form. Therefore, you should use the following Code fragments embedded in the Element.
- How to use a simple form create, we will explain them in detail here.
- Buttons you can create with different elements. The most obvious method is the Element .
- About the "type"attribute you can define different functions.
- type="submit" is the default use of the Button element. In order for a submit Button for the corresponding form is created.
- type="button" defines the Button without solid action. In this case, you can write, for example, a script, and the Button ID to link to.
- type="reset" resets the settings in the corresponding form on the output values.
- Note that you must define in the "form"Element the form, the attributes "action", "method" and "enctype", so you can send data.
- You can also use the attributes "name" and "value".
- With this combination you can send through the Click of a button a value="" defined value which will be coupled with the name="" defined name.
- This is useful if you, for example, two or more "Submit"Buttons available.
- The Text that the Button displays, write it between the opening and the closing end of the Button Element.
- So a Button could be set, for example, at the end of your form: I agree

 HTML Buttons create
 
HTML Buttons create:
- Also, the form Element you can use to create Buttons.
- Note that it is a stand-alone Element, you do not have to include extra.
- Depending on the HTML Version to view the /> or not to draw it even a password.
- Also in the case of Buttons, you define the Button-type with the "type"attribute.
- Also here you can type in submit, reset and button. This works the similar way as in the paragraph described above.
- Since alone, there are differences in the displayed Button Text. These specify with the attribute "value".
- The Button from before would look like this:
- Abstract submissions for "value" are not recommended here.
HTML button create Radio Buttons and check boxes
- You can also create Radio Buttons and check boxes. For a type, the type is "radio" or "checkbox".
- If you have a Set of Radio-create Buttons, it can be always only one active. In the case of check boxes may be selected, however, several.
- A Set create by giving all the Buttons or check boxes in the Set have the same name in the "name" attribute.
- Value-entries are urgently necessary in order for data to be sent. These values should be differences in the Buttons, of course.
- If you want to also assign names with the Element, you should also assign each Button an ID.
- You enclose the Element with the Element, use the Element the attribute "for" or combine the two methods to connect the Label with the Button.
- You want that a Button is enabled by default, add to you also "checked" as a separate attribute.
- A Radio-Button-Set could look like this: I like Radio-Buttons
- I don't like Radio-Buttons
- Three check boxes could look so: I use HTML4
- I use XHTML
- I use HTML5

 HTML: Radio Buttons and check boxes
 
HTML Buttons: create Buttons with group
- You want to put your Buttons in a clear together, you can mark the item as a Set.
- Also, enter a name for the Set with the Element.
- In the case of the Radio Buttons might look like this: Radio Buttons
- I like Radio-Buttons
- I don't like Radio-Buttons
If your Buttons now also want to use, we will explain in the next practice tip on how you HTML-create forms.






