HTML CSS examples for HTML:Form
Example of HTML selected select box
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML select box</title> </head> <!-- www.ja va 2 s . c om--> <body> <form action=""> <select> <option value="ferrari">Ferrari</option> <option value="mercedes" selected>Mercedes</option> <option value="porsche">Porsche</option> </select> </form> </body> </html>