Friday, December 29, 2017

How To Create DropDown Control In Html Control

Hello Friends My Name Is Viraj,Today I Will Create DropDown Control On Your Web Page.

Here In This Html Tutorial We Will Create DropDown Control In Html Control.

Here Is An Example Related To Topic ...........

Step 1 :

<!DOCTYPE html>
<html>
<body>

<select>
  <optgroup label="Swedish Cars">
    <option value="volvo">Volvo</option>
    <option value="saab">Saab</option>
  </optgroup>
  <optgroup label="German Cars">
    <option value="mercedes">Mercedes</option>
    <option value="audi">Audi</option>
  </optgroup>
</select>

</body>
</html>

Output :


1 comment:

How To Create Image Gallery In Html

Hello Friend My Name Is Viraj,Today I Will Create Image Gallery And Display On A Webpage.The emergence of CSS3 technology has enabled web d...