Advertisement
Guest User

Untitled

a guest
Feb 11th, 2018
944
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!--
  5. New Perspectives on HTML5 and CSS3, 7th Edition
  6. Tutorial 3
  7. Review Assignment
  8.  
  9. Pandaisia Chocolates March Specials
  10. Author: Cameron Smith-Beers
  11. Date: 2/7/18
  12.  
  13. Filename: pc_specials.html
  14. -->
  15. <meta charset="utf-8" />
  16. <title>Pandaisia Chocolates Monthly Specials</title>
  17. <link href="pc_specials.css" rel=stylesheet type="text/css" />
  18. <link href="pc_reset2.css" rel=stylesheet type="text/css" />
  19. <link href="pc_styles4.css" rel=stylesheet type="text/css" />
  20. <link href="coach_layout.css" rel=stylesheet type="text/css" />
  21. </head>
  22.  
  23. <body>
  24. <header>
  25. <img src="pc_logo.png" alt="Pandaisia Chocolates" />
  26. <nav class="horizontal">
  27. <ul>
  28. <li><a href="pc_home.html">Home</a></li>
  29. <li><a href="#">The Store</a></li>
  30. <li><a href="#">My Account</a></li>
  31. <li><a href="#">Specials</a></li>
  32. <li><a href="#">Reviews</a></li>
  33. <li><a href="#">Contact Us</a></li>
  34. </ul>
  35. </nav>
  36. </header>
  37. <div class="newRow">
  38. <div class="col-2-3">
  39. <article id="intro">
  40. <h1>March Specials</h1>
  41. <p>Spring is coming and we've got some mouth-watering specials to help you celebrate
  42. the change in seasons in style! Featured throughout March is our always-popular
  43. Chocolate Covered Strawberries / Rose Fruit Syrup Combo, now at the special low
  44. price of $29.95. For that special someone, consider our Red Rose Select box of
  45. Spring chocolates. Remember that for every order of $25 or more,
  46. you receive a free truffle of your choice. For orders of $100 or more we throw
  47. in a four-piece gift box of our signature chocolates and truffles.</p>
  48. </article>
  49. <div class="newRow">
  50. <div class="col-1-3 specials">
  51. <img src="pc_photo7.png" alt="" />
  52. <h1>Red Rose Select</h1>
  53. <p>A classic collection of 18 signature chocolates served with a romantic
  54. red rose for the special person in your life. One of our most popular
  55. box sets.</p>
  56. <p>$24.95</p>
  57. <p><a href="#">Order Now</a></p>
  58. </div>
  59. <div class="col-1-3 specials">
  60. <img src="pc_photo8.png" alt="" />
  61. <h1>Your Choice</h1>
  62. <p>Build your own collection of signature truffles
  63. and chocolates. Now you can choose old favorites from our 24-year history
  64. of award-winning chocolates and sweets.</p>
  65. <p>$32.55</p>
  66. <p><a href="#">Order Now</a></p>
  67. </div>
  68. <div class="col-1-3 specials">
  69. <img src="pc_photo9.png" alt="" />
  70. <h1>Praline Signatures</h1>
  71. <p>Delicious chocolate with delicious pralines presented in a beautiful
  72. and elegant box. Enjoy this fantastic collection inspired by the best
  73. Parisian chocolate shops.</p>
  74. <p>$39.23</p>
  75. <p><a href="#">Order Now</a></p>
  76. </div>
  77. </div>
  78. </div>
  79. <div class="col-1-3" id="awardList">
  80. <h1>Awards</h1>
  81. <div class="awards" id="award1">
  82. <img src="pc_award1.png" alt="" />
  83. <p>Best of Show</p>
  84. <p>Confectioners Association</p>
  85. </div>
  86. <div class="awards" id="award2">
  87. <img src="pc_award2.png" alt="" />
  88. <p>Five Stars</p>
  89. <p>Confectioner Quarterly</p>
  90. </div>
  91. <div class="awards" id="award3">
  92. <img src="pc_award3.png" alt="" />
  93. <p>Best Chocolate</p>
  94. <p>Food World</p>
  95. </div>
  96. <div class="awards" id="award4">
  97. <img src="pc_award4.png" alt="" />
  98. <p>Best Chocolate</p>
  99. <p>Choco-Fest</p>
  100. </div>
  101. <div class="awards" id="award5">
  102. <img src="pc_award4.png" alt="" />
  103. <p>Best Dessert</p>
  104. <p>Choco-Fest</p>
  105. </div>
  106. </div>
  107. </div>
  108. <footer>
  109. Pandaisia Chocolates &copy; 2017 All Rights Reserved
  110. </footer>
  111. </body>
  112. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement