-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (95 loc) · 3.72 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tea Cozy</title>
<link rel="stylesheet" type="text/css" href="./resources/css/style.css" />
</head>
<body>
<header>
<div class="logo">
<img src="./resources/images/img-tea-cozy-logo.png" alt="Tea Cozy logo">
</div>
<nav>
<span><a href="#mission">Mission</a></span>
<span><a href="#featured">Featured Tea</a></span>
<span><a href="#locations">Locations</a></span>
</nav>
</header>
<main>
<div class="content" id="mission">
<div class="mission-text">
<h2>Our Mission</h2>
<h4>Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</div>
<div class="content" id="featured">
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy?</h4>
<div class="featured-container">
<div class="featured-box">
<figure>
<img src="./resources/images/img-berryblitz.jpg" height="200" width="300" alt="Fall Berry Blitz Tea" />
<figcaption>Fall Berry Blitz Tea</figcaption>
</figure>
</div>
<div class="featured-box">
<figure>
<img src="./resources/images/img-spiced-rum.jpg" height="200" width="300" alt="Spiced Rum Tea" />
<figcaption>Spiced Rum Tea</figcaption>
</figure>
</div>
<div class="featured-box">
<figure>
<img src="./resources/images/img-donut.jpg" height="200" width="300" alt="Seasonal Donuts" />
<figcaption>Seasonal Donuts</figcaption>
</figure>
</div>
<div class="featured-box">
<figure>
<img src="./resources/images/img-myrtle-ave.jpg" height="200" width="300" alt="Myrtle Ave Tea" />
<figcaption>Myrtle Ave Tea</figcaption>
</figure>
</div>
<div class="featured-box">
<figure>
<img src="./resources/images/img-bedford-bizarre.jpg" height="200" width="300" alt="Bedford Bizarre Tea" />
<figcaption>Bedford Bizarre Tea</figcaption>
</figure>
</div>
</div>
</div>
<div class="content" id="locations">
<h2>Locations</h2>
<div class="locations-container">
<div class="locations-box">
<h3>Downtown</h3>
<h4>384 West 4th Street</h4>
<h4>Suite 108</h4>
<h4>Portland, Maine</h4>
</div>
<div class="locations-box">
<h3>East Bayside</h3>
<h4>3433 Phiserman's Avenue</h4>
<h4>(Northwest Corner)</h4>
<h4>Portland, Maine</h4>
</div>
<div class="locations-box">
<h3>Oakdale</h3>
<h4>515 Crescent Avenue</h4>
<h4>Second Floor</h4>
<h4>Portland, Maine</h4>
</div>
</div>
</div>
<div class="content" id="contact">
<h2>The Tea Cozy</h2>
<h5>[email protected]</h5>
<h5>917-555-8904</h5>
</div>
</main>
<footer>
<h5>copyright The Tea Cozy 2017</p>
</footer>
</body>
</html>