Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. body{background-color:rgb(216,172,151);text-family:Museo Sans Rounded;}
  5. h1,h2{font-family:Museo Sans Rounded;color:rgb(255,51,51);}
  6. p1,p2,p3{font-family:Museo Sans Rounded;font-size:160%;color:rgb(45,45,45);}
  7.  
  8. </style>
  9. </head>
  10. <body>
  11. <h1>Papa Enrique's Online Pizza Delivery Service!</h1>
  12. <img src="http://i.imgur.com/Fwv9lfC.png" alt="Papa John" align="middle" style="height:228px;">
  13. <br>
  14. <form action="/action_page.php">
  15. <fieldset>
  16. <legend>Personal information:</legend>
  17. First Name:<br>
  18. <input type="text" name="firstname" Placeholder="Papa"><br>
  19. Last Name:<br>
  20. <input type="text" name="lastname" Placeholder="Enrique"><br>
  21. Address:<br>
  22. <input type="text" name="address" Placeholder="123-Example St.12345"><br>
  23. Phone Number:<br>
  24. <input type="text" name="phone" Placeholder="877-393-4448">
  25. </form>
  26. <br>
  27. <h2>Place Your Order Here</h2>
  28. <img src="http://www.cicis.com/media/1138/pizza_trad_pepperoni.png" alt="Pepperoni Pizza" align="middle" style="max-width:30%;height:auto;float:right">
  29. <br>
  30. <p1>Cheese</p1>
  31. <form action="/action_page.php">
  32. <select name="cheese">
  33. <option value="mozarella" selected>Mozarella</option>
  34. <option value="cheddar">Cheddar</option>
  35. <option value="swiss">Swiss</option>
  36. <option value="asiago">Asiago</option>
  37. <option value="mixed">Mixed</option>
  38. </select>
  39. </form>
  40. <p2>Toppings</p2>
  41. <form>
  42. <input type="radio" name="topping" value="pepperoni">Pepperoni<br>
  43. <input type="radio" name="topping" value="pineapple">Pineapple<br>
  44. <input type="radio" name="topping" value="mushroom">Mushroom<br>
  45. <input type="radio" name="topping" value="anchovies">Anchovies<br>
  46. <input type="radio" name="topping" value="chicken">Chicken<br>
  47. <input type="radio" name="topping" value="vegetable">Vegetables<br>
  48. </form>
  49. <p3>Drink</p3>
  50. <form action="/action_page.php">
  51. <select name="drink"/type">
  52. <option value="coke" selected>Coke</option>
  53. <option value="pepsi" selected>Pepsi</option>
  54. <option value="sprite" selected>Sprite</option>
  55. <option value="arizona" selected>Arizona</option>
  56. </select>
  57. </form>
  58.  
  59. <form action="/action_page.php">
  60. <textarea name="comments" rows="10" cols="30">Additional Comments</textarea>
  61. <br>
  62. </form>
  63.  
  64. <button type="button" onclick="alert('Your Order has been Placed, Your total is $12.75!')">Place Order</button>
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement