-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (90 loc) · 2.51 KB
/
index.html
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
111
112
113
114
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="./resources/css/style.css">
<title>Tea Cozy</title>
</head>
<body>
<!--header-->
<header class="flex-container">
<img src="./resources/images/img-tea-cozy-logo.png" alt="logo">
<nav>
<span><a href="#mission">Mission</a></span>
<span><a href="#store">Featured Tea</a></span>
<span><a href="#locations">Locations</a></span>
</nav>
</header>
<!--Main-->
<div class="main">
<div id="mission" class="flex-container">
<div class="content">
<h2>Our Mission</h2>
<h4>Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</div>
<!--store-->
<div class="store">
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy</h4>
<div id="store" class="flex-container items">
<div class="inventory">
<img src="./resources/images/img-berryblitz.jpg" alt="Cup of Berries">
<span>Fall Berry Blitz Tea</span>
</div>
<div class="inventory">
<img src="./resources/images/img-spiced-rum.jpg" alt="Crate">
<span>Spiced Rum Tea</span>
</div>
<div class="inventory">
<img src="./resources/images/img-donut.jpg" alt="Donut">
<span>Seasonal Donuts</span>
</div>
<div class="inventory">
<img src="./resources/images/img-myrtle-ave.jpg" alt="Cup of Tea">
<span>Myrtle Ave Tea</span>
</div>
<div class="inventory">
<img src="./resources/images/img-bedford-bizarre.jpg" alt="Cup of Tea">
<span>Bedford Bizzare Tea</span>
</div>
</div>
</div>
<!--locations-->
<div id="locations">
<h2>Locations</h2>
<div class="flex-container locations">
<div class="location">
<h3>Downtown</h3>
<p>384 west 4th St</p>
<p>Suite 108</p>
<p>Portland, Maine</p>
</div>
<div class="location">
<h3>East Bayside</h3>
<p>3433 Phisherman's Avenue</p>
<p>(Northwest Corner)</p>
<p>Portland, Maine</p>
</div>
<div class="location">
<h3>Oakdale</h3>
<p>515 Crescent Avenue</p>
<p>Second floor</p>
<p>Portland, Maine</p>
</div>
</div>
</div>
</div>
<!--contact-->
<div class="contact">
<h2>The Tea Cozy</h2>
<h5>contact@theteacozy.com</h5>
917-555-8904
</div>
<!--footer-->
<div class="footer">
<h5>© The Tea Cozy 2017</h5>
</div>
</body>
</html>