HTML and CSS Reference
In-Depth Information
Task
Tag
Example
Include forms
Establish form
<form>
Insert textbox
<form>
<input type=”text”>
Specify size
<input type=”text”
size=”20”>
Specify name
<input type=”text”
size=”20” name=”x”>
Insert checkbox
<input
type=”checkbox”>
Insert radio buttons
<input type=”radio”>
Insert drop-down list
<select name="x">
<option></option>
<option></option>
</select>
<select name="x">
<option>First Choice</option>
<option>Second
Choice</option>
</select>
Insert comment field
<textarea name="x"
cols="22"
rows="8"></textarea>
Insert submit button
<input type=”submit”>
Change text on button
<input type=”submit”
value=”your text here”>
Search WWH ::




Custom Search