'selected' sets the chosen option in a drop-down or select list : selected « Form « HTML / CSS






'selected' sets the chosen option in a drop-down or select list

    
<HTML>
<BODY>
<select>
   <option>First Option</option>
   <option>Second Option</option>
   <option selected>Third Option</option>
</select>
</BODY>
</HTML>  
    
      
      








Related examples in the same category