-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (87 loc) · 3.09 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
<!DOCTYPE html>
<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="styles.css" type="text/css">
</head>
<body>
<header>
<img class="logo" src="pic/img-tea-cozy-logo.png" alt="tea cozy logo" />
<nav class="nav">
<li>Mission</li>
<li>Featured Tea</li>
<li>Locations</li>
</nav>
</header>
<body>
<section class="mission">
<div style= "background-color: black;">
<h2>Our Mission</h2>
<h4>Hand-picked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</section>
<section class="section2">
<div class="textpart">
<h2>Tea of the Month</h2>
<h4>What's steeping at the Tea Cozy?</h4>
</div>
<div class="tom">
<figure>
<img src="pic/img-berryblitz.png" alt="img-berryblitz" />
<figcaption>Fall Berry Blitz Tea</figcaption>
</figure>
<figure>
<img src="pic/img-spiced-rum.png" alt="img-spiced-rum" />
<figcaption>Spiced Rum Tea</figcaption>
</figure>
<figure>
<img src="pic/img-donut.png" alt="img-donut" />
<figcaption>Seasoonal Donuts</figcaption>
</figure>
<figure>
<img src="pic/img-myrtle-ave.png" alt="img-myrtle-ave" />
<figcaption>Myrtle Ave Tea</figcaption>
</figure>
<figure>
<img src="pic/img-bedford-bizarre.png" alt="img-bedford-bizarre" />
<figcaption>Bedford Bizzare Tea</figcaption>
</figure>
</div>
</section>
<section class="section3">
<h2>Locations</h2>
<div class="boss">
<div class="box">
<h3>Downtown</h3>
<p>384 West 4th St</p>
<p>Suite 108</p>
<p>Portland, Maine</p>
</div>
<div class="box">
<h3>East Bayside</h3>
<p>3433 Phisherman's Avenue</p>
<p>(Northwest Corner)</p>
<p>Portland, Maine</p>
</div>
<div class="box">
<h3>Oakdale</h3>
<p>515 Crescent Avenue</p>
<p>Second Floor</p>
<p>Portland, Maine</p>
</div>
</div>
</section>
<div>
<h2>The Tea Cozy</h2>
<h5>[email protected]</h5>
<h4>917-555-8904</h4>
</div>
<footer>
<p>copyright The Tea Cozy 2017</p>
</footer>
</body>
</body>
</html>