Example of HTML select box - HTML CSS HTML

HTML CSS examples for HTML:Form

Description

Example of HTML select box

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML select box</title> 
 </head> <!--   w w w .j a  v  a  2 s.  co m-->
 <body> 
  <form action=""> 
   <select> 
       <option value="ferrari">Ferrari</option> 
       <option value="mercedes">Mercedes</option> 
       <option value="porsche">Porsche</option> 
   </select> 
  </form>   
 </body>
</html>

Related Tutorials