option

option
HTML option Element
The HTML <option> option element is used to define the options that are available in a <select> or <datalist> element. You can also choose to group certain options together using the <optgroup> element if needed.

HTML CODE EXAMPLE
<select name="tech">
  <option value="HTML">HTML</option>
  <option value="CSS">CSS</option>
  <option value="Javascript">Javascript</option>
  <option value="PHP">PHP</option>
</select>
 
Choose a technology: 

click here to code.

0 Response to "option"

Post a Comment