issue193.html 651 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Index page</title>
  5. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
  6. </head>
  7. <body>
  8. <form action="#">
  9. <select id="options-without-values" name="without">
  10. <option>none selected</option>
  11. <option id="one">One</option>
  12. <option id="two">Two</option>
  13. <option>Three</option>
  14. </select>
  15. <select id="options-with-values" name="with">
  16. <option value="none">none selected</option>
  17. <option value="one">One</option>
  18. <option value="two">Two</option>
  19. <option value="three">Three</option>
  20. </select>
  21. </form>
  22. </body>
  23. </html>