-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (92 loc) · 3.35 KB
/
index.html
File metadata and controls
110 lines (92 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tea Cozy</title>
<link rel="stylesheet" href="./resources/css/index.css">
</head>
<body>
<!-- Header section -->
<header>
<div class="header">
<img src="./resources/images/img-tea-cozy-logo.webp" class="logo">
<nav>
<ul>
<li><a href="#mission">Mission</a></li>
<li><a href="#featuredTea">Featured Tea</a></li>
<li><a href="#locations">Locations</a></li>
</ul>
</nav>
</div>
</header>
<main>
<!--Section for tea types-->
<section class="mission-container">
<div class="text-over">
<h2>Our Mission</h2>
<h4>Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</section>
<section class="featured">
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy?</h4>
</section>
<section clas="teas-container">
<div class="teas">
<div class="tea">
<img src="./resources/images/img-berryblitz.webp">
<h5>Fall Berry Blitz Tea</h5>
</div>
<div class="tea">
<img src="./resources/images/img-spiced-rum.webp">
<h5>Spiced Rum Tea</h5>
</div>
<div class="tea">
<img src="./resources/images/img-donut.webp">
<h5>Seasonal Donuts</h5>
</div>
<div class="tea">
<img src="./resources/images/img-myrtle-ave.webp">
<h5>Myrtle Ave Tea</h5>
</div>
<div class="tea">
<img src="./resources/images/img-bedford-bizarre.webp">
<h5>Bedford Bizarre Tea</h5>
</div>
</div>
</section>
<!--Locations section-->
<section class="locations">
<div class="heading-text">
<h2>Locations</h2>
</div>
<div class="location-container">
<div class="location">
<h3>Downtown</h3>
<p>384 West 4th St Suite 108 Portland, Maine</p>
</div>
<div class="location">
<h3>East Bayside</h3>
<p>3433 Phisherman's Avenue Northwest Corner Portland, Maine</p>
</div>
<div class="location">
<h3>Oakdale</h3>
<p>515 Crescent Avenue Second Floor Portland, Maine/p>
</div>
</div>
</section>
<section class="contact">
<div>
<h2>The Tea Cozy</h2>
<h5>contact@theteacozy.com</h5>
</div>
</section>
</main>
<footer>
<div class="container">
<p id="copyright">copyright The Tea Cozy 2017</p>
</div>
</footer>
</body>
</html>