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.

Related Posts :

  • pre pre HTML pre Element The HTML <pre> preformatted text element is used to preserve return… Read More...
  • p p HTML p Element The HTML <paragraph> element is used to specify a paragraph in the web … Read More...
  • progress progress HTML progress Element NOTE: This new element is HTML5 and will be a standardized eleme… Read More...
  • q q HTML q Element The HTML <q> quotation element is used to quote text with quotation phr… Read More...
  • param param HTML param Element The HTML <param> element is used to specify parameters that will… Read More...

0 Response to "option"

Post a Comment