The html form tagging tutorial mainly explains how to use input tags in web pages, and mainly introduces the use of the attributes of input tags.
The input tag <input> is one of the most commonly used tags in a form. Commonly used text fields, buttons, etc. use this mark.
The properties of the <input> tag are shown in the following table
| property | describe |
|---|---|
| name | The name of the domain |
| type | Types of domains |
In the type attribute, include the following attribute values
| type attribute value | describe |
|---|---|
| text | Text domain |
| password | Password domain |
| file | File domain |
| checkbox | Check box |
| radio | Radio box |
| button | Normal button |
| Submit | Submit Button |
| reset | Reset button |
| Hidden | Hide domain |
| image | Image field (image button) |