-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (94 loc) · 3.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tea</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<img src="./images/img-tea-cozy-logo.png" alt="logo" id="logo"/>
</div>
<div class="top_menu">
<ul>
<li><a href="#missions">Missions</a></li>
<li><a href="#featuredTea">Featured Tea</a></li>
<li><a href="#containerLocations">Locations</a></li>
</ul>
</div>
</header>
<div class="containerOurMission" id="missions">
<div class="text1">
<h2 id="h21" class="bc1">Our Mission</h2>
<h4 class="bc1" id="h41">Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</div>
<div class="containerTeaOfTheMonth" id="featuredTea">
<h2 id="h22">Tea of the Month</h2>
<h4 id="h42">What's Steeping at The Tea Cozy?</h4>
<div class="cards">
<div class="row1">
<div>
<img src="./images/img-berryblitz.jpg" id="sphoto">
<h4 id="OMh4">Fall Berry Blitz Tea</h4>
</div>
<div>
<img src="./images/img-spiced-rum.jpg" id="sphoto">
<h4 id="OMh4">Spiced Rum Tea</h4>
</div>
<div>
<img src="./images/img-donut.jpg" id="sphoto">
<h4 id="OMh4">Seasonal Donuts</h4>
</div>
</div>
</div>
<div class="cards2">
<div class="row2">
<div>
<img src="./images/img-myrtle-ave.jpg" id="mphoto">
<h4 id="tx3">Myrthle Ave Tea</h4>
</div>
<div>
<img src="./images/img-bedford-bizarre.jpg" id="mphoto">
<h4 id="tx3">Bedford Bizarre Tea</h4>
</div>
</div>
</div>
</div>
<div class="containerLocations" id="containerLocations">
<h2 id="h23">Locations</h2>
<div class="text5">
<div class="text55">
<h3>Downtown</h3>
<p>384 West 4th St</p>
<p>Suite 108</p>
<p>Portland, Maine</p>
</div>
<div class="text55">
<h3>East Bayside</h3>
<p>3433 Phisherman's Avenue</p>
<p>(Northwest Corner)</p>
<p>Portland, Maine</p>
</div>
<div class="text55">
<h3>Oakdale</h3>
<p>515 Crescent Avenue</p>
<p>Second Floor</p>
<p>Portland, Maine</p>
</div>
</div>
</div>
<div class="containerTheTeaCozy">
<div>
<h2>The Tea Cozy</h2>
<h5>[email protected]</h5>
<h5>917-555-8904</h5>
</div>
</div>
<footer>
<p>copyright The Tea Cozy 2017</p>
</footer>
</body>
</html>