Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Checkout</title>
  6. <link rel="stylesheet" href="stylesheets/main.css" type="text/css">
  7. </head>
  8.  
  9. <body>
  10.  
  11. <h2>Place your Order</h2>
  12. <form>
  13. <fieldset>
  14. <legend>Product Details</legend>
  15. <div class="input-group">
  16. <label for="product">Product:</label>
  17. <select id="product" autofocus="autofocus">
  18. <option>Product...</option>
  19. <option>Game Of Thrones</option>
  20. <option>Of Mice And Men</option>
  21. <option>James Bond</option>
  22. <option>Star Wars</option>
  23. </select>
  24. </div>
  25.  
  26. <div class="input-group">
  27. <label for="quantity">Quantity:</label>
  28. <input type="number" id="quantity" min="1" max="10" value="1"/>
  29. </div>
  30.  
  31. </fieldset>
  32.  
  33. <fieldset>
  34. <legend>Shipping Address</legend>
  35. <div class="input-group">
  36. <label for="address">Address:</label>
  37. <input type="text" id="address" placeholder="Address"/>
  38. </div>
  39.  
  40. <div class="input-group">
  41. <label for="zip-code">Zip Code:</label>
  42. <input type="text" id="zip-code" placeholder="Zip Code"/>
  43. </div>
  44. <div class="input-group">
  45. <label for="country">Country:</label>
  46. <select id="country">
  47. <option>Country...</option>
  48. <option>Afghanistan</option>
  49. <!-- ... rest of the countries go here ... -->
  50. <option>Zimbabwe</option>
  51. </select>
  52. </div>
  53. </fieldset>
  54.  
  55. <div class="input-group">
  56. <input type="submit" value="Purchase"/>
  57. </div>
  58. </form>
  59.  
  60. </body>
  61.  
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement