HTML form, html form
Form:
<Input type = "text" name = "" value = "" size = "display characters" maxlength = "Maximum number of characters" readonly = "readonly read-only" disabled = "disabled" inoperable not activated placeholder = "Search W3School">
<Input type = "password" value = "" size = "">
<Input type = "radio" name = "sex" value = "male" checked = "checked" id = "man"> <label for = "man"> male </label> & nbsp;
<Input type = "radio" name = "sex" value = "female" id = "woman"> <label form = "woamn"> female </label> .... ....... the name must be the same !!!!!!!
<Select name = "">
<Option selected = "" value = ""> </option>
<Option value = ""> </option>
</Select>
<Optgroup label = ""> group name
<Select name = "" size = "number of rows displayed" multipule = "multiple" multiple choice>
<Option value = ""> </option>
</Select>
</Optgroup>
<Input type = "file" size = "display length" name = "">
Form box
<Fieldset> </fieldset>
<Lenged> </lenged> defines the title for fieleset.
<Input type = "reset | submit | button" name = "" value = "">
<Input type = "image" src = "" name>
<Input type = "hidden" value = "" name = "">
<Textarea name = "" cols = "several words per line" rows = "How many rows"> </textarea>
Add a scroll bar: <textarea style = "scrollbar: overflow"> </textarea>
Horizontal scroll bar
<Body> 1 <! DOCTYPE html> 2