Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
17select_optgroup.html
17select_optgroup.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Select multiple</title> </head> <body> <form action="" method="POST" enctype="application/x-www-form-urlencoded"> cars: <select name="car"> <optgroup label="Swed"> <option>SAAB</option> <option>Volvo</option> </optgroup> <optgroup label="Germ"> <option>Mercedes</option> <option>Audi</option> </optgroup> </select> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code