Advertisement
Guest User

Untitled

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