The <option> tag in HTML is used to choose an option from a Drop-Down menu. This tag can be used with or without any attributes and needed value can be sent to the server. The group of options can be created using <optgroup> Tag. It creates a group of related menu items.
Syntax:
<option> Contents... </option>
Attributes: The <option> tag contains four attributes which are listed below:
- disabled: This attribute contains the value disabled which represents the option is disabled.
- label: This attribute contains the text value which represents the shorted label for the option.
- selected: This attribute contains the value selected which represents the item that is pre-selected when the browser loaded.
- value: This attribute contains the value text sent to the server.
Example 1:
HTML
<!DOCTYPE html>
< html >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >HTML option Tag</ h2 >
< select >
< option >Choose an option</ option >
< option value = "html" >HTML</ option >
< option value = "java" >JAVA</ option >
< option value = "C++" >C++</ option >
< option value = "php" >PHP</ option >
< option value = "perl" >PERL</ option >
</ select >
</ body >
</ html >
|
Output:

Example 2:
HTML
<!DOCTYPE html>
< html >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >HTML option Tag</ h2 >
< strong >Select City< br ></ strong >
< select >
< option >Allahabad</ option >
< option >Pryagraj</ option >
< option >Jaipur</ option >
< option >Noida</ option >
</ select >
</ body >
</ html >
|
Output:

Supported Browsers:
- Google Chrome 1+
- Edge 12+
- Firefox 1+
- Safari
- Opera
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
26 Aug, 2022
Like Article
Save Article