index.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Tea Cozy</title>
  6. <meta name="description" content="">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <link rel="stylesheet" href="resources/css/style.css" type="text/css" media="screen" />
  9. </head>
  10. <body>
  11. <div class="front">
  12. <header>
  13. <img src="/resources/img/img-tea-cozy-logo.png">
  14. <span>
  15. <a href="#">Mission</a>
  16. <a href="#">Featured Tea</a>
  17. <a href="#">Locations</a>
  18. </span>
  19. </header>
  20. <main>
  21. <section id="first">
  22. <h2>Our Mission</h2>
  23. <h4>Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
  24. </section>
  25. <section id="second">
  26. <h2>Tea of the Month</h2>
  27. <h4>What's Steeping at The Tea Cozy?</h4>
  28. <div class="cards">
  29. <span class="card">
  30. <img src="/resources/img/img-berryblitz.jpg">
  31. <div>Fall Berry Blitz Tea</div>
  32. </span>
  33. <span class="card">
  34. <img src="/resources/img/img-spiced-rum.jpg">
  35. <div>Spiced Rum Tea</div>
  36. </span>
  37. <span class="card">
  38. <img src="/resources/img/img-donut.jpg">
  39. <div>Seasonal Donuts</div>
  40. </span>
  41. <span class="card">
  42. <img src="/resources/img/img-myrtle-ave.jpg">
  43. <div>Myrtle Ave Tea</div>
  44. </span>
  45. <span class="card">
  46. <img src="/resources/img/img-bedford-bizarre.jpg">
  47. <div>Bedford Bizarre Tea</div>
  48. </span>
  49. </div>
  50. </section>
  51. <section id="third">
  52. <h3>Locations</h3>
  53. <div class="cards">
  54. <div class="card">
  55. <h3>Downtown</h3>
  56. <h5>384 West 4th St</h5>
  57. <h5>Suite 108</h5>
  58. <h5>Portland, Maine</h5>
  59. </div>
  60. <div class="card">
  61. <h3>Downtown</h3>
  62. <h5>384 West 4th St</h5>
  63. <h5>Suite 108</h5>
  64. <h5>Portland, Maine</h5>
  65. </div>
  66. <div class="card">
  67. <h3>Downtown</h3>
  68. <h5>384 West 4th St</h5>
  69. <h5>Suite 108</h5>
  70. <h5>Portland, Maine</h5>
  71. </div>
  72. </div>
  73. </section>
  74. <section id="fourth">
  75. <h2>The Tea Cozy</h2>
  76. <h5>contact@theteacozy.com</h5>
  77. <h5>917-555-8904</h5>
  78. </section>
  79. <footer>
  80. copyright The Tea Cozy 2017
  81. </footer>
  82. </main>
  83. </div>
  84. </body>
  85. </html>