select tag in HTML

<select>  it used to dropdown list

<option>  it used under the select tag  for providing the content in drop-down list


example code for Select tag

<!DOCTYPE html>
<html>
<body>

<select>
  <option value="ind">India</option>
  <option value="usa">USA</option>
  <option value="chn">China</option>
  <option value="aus">Australia</option>
</select>
 
</body>
</html>

0 Comments