-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 2.15 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
<!DOCTYPE html>
<html>
<head>
<title>Tea Cozy</title>
<link href= "./resources/css/style.css" type= "text/css" rel= "stylesheet"/>
</head>
<body>
<header class="header">
<img src="./resources/images/img-tea-cozy-logo.png"/>
<nav>
<p><a href="#mission">Mission</a></p>
<p><a href="#features">Featured Tea</a></p>
<p><a href="#locations">Locations</a></p>
</nav>
</header>
<div class="mission">
<div id="mission" class="flex mission">
<div class="our mission">
<h2>Our Mission</h2>
<h4>Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</div>
</div>
<div id="features">
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy</h4>
<div class="flex features">
<div><img src="./resources/images/img-berryblitz.jpg"/><p>Fall Berry Blitz Tea</p></div>
<div><img src="./resources/images/img-spiced-rum.jpg"/><p>Spiced Rum Tea</p></div>
<div><img src="./resources/images/img-donut.jpg"/><p>Seasonal Donuts</p></div>
<div><img src="./resources/images/img-donut.jpg"/><p>Myrtle Ave Tea</p></div>
<div><img src="./resources/images/img-bedford-bizarre.jpg"/><p>Bedford Bizarre Tea</p></div>
</div>
</div>
<div id="locations">
<h2>Locations</h2>
<div class="flex 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 class="contact">
<h2>The Tea Cozy</h2>
<h5>[email protected]</h5>
<h5>917-555-8904</h5>
</div>
<footer>
<h5>copyright The Tea Cozy 2017</h5>
</footer>
</body>
</html>