Currently Empty: $0.00
Course Preview
0/4
Introduction to HTML
0/7
Getting Started with HTML5
0/6
Deep into HTML5
0/12
Introduction to CSS
0/7
Deep Into CSS
0/8
Using Browser Developer Tools
0/2
Building Projects: Part 1 – for HTML & CSS
0/4
Building an NFT Website (HTML % CSS)
0/10
Making NFT Website Responsive (HTML % CSS)
0/7
Building an NFT Website (JavaScript)
0/4
Introduction to Git
0/1
Introduction To Javascript
0/8
Deep Into JavaScript
0/8
Advancing with JavaScript
0/6
JavaScript Interactivity with DOM
0/6
Building Project: Part 2 – for HTML, CSS and JavaScript
0/4
Deep Into Git and Github
0/2
Final Certification Examination
0/3
More Component of HTML form
select
You may use <select> (with nested option>) elements to build a drop-down menu of items from which a user can pick: By including the chosen attribute in an <option> element, that option will be shown by default.

Additionally, if you want to group options into different categories, you can nest <option> elements in an <optgroup> element:
Definition and Application
- A drop-down list is created with the
<select>HTML tag. - The
<select>element is most often used to gather user input in a form.
After the form is submitted, the name property is required to refer to the form data (if you omit the name attribute, no data from the drop-down list will be submitted).
- The
idelement is required to link the drop-down list to a label.
The choices in the drop-down list are defined by the <option> tags in the <select> element.
