Advertisement
Guest User

Untitled

a guest
Aug 25th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>HTML Forms</title>
  6.   </head>
  7.   <body>
  8.    
  9.     <form action="index.html" method="post">
  10.       <h1>Shirt Order Form</h1>
  11.       <label for="color">Shirt Color:</label>
  12.       <select id="color" name="shirt_color">
  13.         <option value="red">Red</option>
  14.         <option value="yellow">Yellow</option>
  15.         <option value="purple">Purple</option>
  16.         <option value="blue">Blue</option>
  17.         <option value="green">Green</option>
  18.         <option value="orange">Orange</option>
  19.       </select>
  20.     </form>
  21.  
  22.   </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement