Resources Menu


Quick Reference Sheets for Webmasters

Quick Reference sheets are packed full of useful information for all webmasters.

HTML Reference Sheet

HTML Tag List


<option>
The OPTION tag sets an option within a select field of a form.

Attributes
label
Value(s) : text for label
Sets a label to be displayed for the optgroup.
disabled
Value(s) : disabled
This disables the option group on it's intial load.
selected
Value(s) : disabled
This disables the option group on it's intial load.
value
Value(s) : disabled
This disables the option group on it's intial load.
example:
<select name="Country">
<option value="Canada">Canada</option>
<option value="US">USA</option>
</select>