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