-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (82 loc) · 3.01 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
<html lang="en">
<head>
<link rel="stylesheet" href="./resources/css/styles.css">
<meta charset="UTF-8">
<title>Tea Cozy</title>
</head>
<body>
<header class="flex">
<img src="./resources/media/img-tea-cozy-logo.png" alt="pic says tea cozy">
<nav>
<span><a href="#mission">Mission</a></span>
<span><a href="#teas">Featured Tea</a></span>
<span><a href="#locations">Locations</a></span>
</nav>
</header class="flex">
<div id="container" class="flex">
<div id="mission" class="flex">
<div class="content">
<h2>Our Mission</h2>
<h4>Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</div>
<div id="teas">
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy?</h4>
<div id="teaGroup" class="flex">
<div class="tea">
<img src="./resources/media/img-berryblitz.jpg" alt="cup of tea with berries">
<h4>Fall Berry Blitz Tea</h4>
</div>
<div class="tea">
<img src="./resources/media/img-spiced-rum.jpg" alt="box of spiced img-spiced-rum">
<h4>Spiced Rum Tea</h4>
</div>
<div class="tea">
<img src="./resources/media/img-donut.jpg" alt="image of donuts yum">
<h4>Seasonal Donuts</h4>
</div>
<div class="tea">
<img src="./resources/media/img-myrtle-ave.jpg" alt="picture of myrtle tea">
<h4>Myrtle Ave Tea</h4>
</div>
<div class="tea">
<img src="./resources/media/img-bedford-bizarre.jpg" alt="cup of tea bedford bizarre">
<h4>Bedford Bizarre Tea</h4>
</div>
</div>
</div>
<div id="locations">
<h2>Locations</h2>
<div id="locationBoxes" class="flex">
<div class="locale">
<h3>Downtown</h3>
<p>384 West 4th St</p>
<p>Suite 108</p>
<p>Portland, Maine</p>
</div>
<div class="locale">
<h3>East Bayside</h3>
<p>3433 Phisherman's Avenue</p>
<p>(Northwest Corner)</p>
<p>Portland, Maine</p>
</div>
<div class="locale">
<h3>Oakdale</h3>
<p>515 Crescent Avenue</p>
<p>Second Floor</p>
<p>Portland, Maine</p>
</div>
</div>
</div>
</div>
<div id="contactInfo">
<h2>The Tea Cozy</h2>
<h5>contact@theteacozy.com</h5>
<h5>917-555-1234</h5>
</div>
<footer>
<h5>copyright The Tea Cozy 2017</h5>
</footer>
</body>
</html>