-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (101 loc) · 3.26 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
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<!--Title & Tab Browser icon -->
<title>Tea Cozy</title>
<link rel="shortcut icon" type="image/png" href="favicon.png" />
<!-- Website Metadata Info -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="./resources/css/style.css">
</head>
<body>
<!-- Header -->
<header>
<img class="logo" src="./resources/images/img-tea-cozy-logo.png" alt="Tea Cozy">
<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>
<div class="container">
<!-- Mission Section -->
<div class="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>
<!-- Tea Section -->
<div class="tea-section">
<span class="tea-header"><h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy?</h4>
</span>
<div class="tea-products">
<div class="products">
<img class="image-content" src="./resources/images/img-berryblitz.jpg">
<p>Fall Berry Blitz Tea</p>
</div>
<div class="products">
<img class="image-content" src="./resources/images/img-spiced-rum.jpg">
<p>Spiced Rum Tea</p>
</div>
<div class="products">
<img class="image-content" src="./resources/images/img-donut.jpg">
<p>Seasonal Donuts</p>
</div>
<div class="products">
<img class="image-content" src="./resources/images/img-myrtle-ave.jpg">
<p>Myrtle Ave Tea</p>
</div>
<div class="products">
<img class="image-content" src="./resources/images/img-bedford-bizarre.jpg">
<p>Bedford Bizarre Tea</p>
</div>
</div>
</div>
<!-- Locations Section -->
<div id="locations">
<h2>Locations</h2>
<div class="address">
<div class="office">
<h3>Downtown</h3>
<p>384 West 4th Street</p>
<p>Suite 108</p>
<p>Portland, MA 97048 </p>
</div>
<div class="office">
<h3>East Bayside</h3>
<p>3433 Phersman's Avenue</p>
<p>(Northwest Corner)</p>
<p>Portland, Maine 04019</p>
</div>
<div class="office">
<h3>Oakdale</h3>
<p>515 Crescent Avenue</p>
<p>Second Floor</p>
<p>Portalnd, Maine 04019</p>
</div>
</div>
</div>
<!-- Contact Section -->
<div class="contact">
<p>
<h2>The Tea Cozy</h2></p>
<div class="email">
<h5>[email protected]</h5>
<p>917-555-8904</p>
</div>
</div>
</div>
<!-- Footer Section -->
<footer>
<div class="footer-info">
<span>Copyright 2017 | © The Tea Cozy</span>
</div>
</footer>
</body>
</html>