-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (91 loc) · 2.8 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tea Cozy</title>
<link href="./style.css" type="text/css" rel="stylesheet">
</head>
<body>
<header>
<div class="logo">
<img src="resources/img-tea-cozy-logo.png" alt="Tea Cozy logo">
</div>
<div class="nav">
<span><a href="#mission">Mission</a></span>
<span><a href="#monthly">Featured Tea</a></span>
<span><a href="#locations">Locations</a></span>
</div>
</header>
<div class="content">
<div id="mission" class="our-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 id="monthly" class="monthly-text">
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy?</h4>
</div>
<div class="text-images">
<div class="text-image">
<img src="resources/img-berryblitz.jpg" alt="Tea 1 image">
<span>Fall Berry Blitz Tea</span>
</div>
<div class="text-image">
<img src="resources/img-spiced-rum.jpg" alt="Tea 2 image">
<span>Spiced Rum Tea</span>
</div>
<div class="text-image">
<img src="resources/img-donut.jpg" alt="Tea 3 image">
<span>Seasonal Donuts</span>
</div>
<div class="text-image">
<img src="resources/img-myrtle-ave.jpg" alt="Tea 4 image">
<span>Myrtle Ave Tea</span>
</div>
<div class="text-image">
<img src="resources/img-bedford-bizarre.jpg" alt="Tea 5 image">
<span>Bedford Bizarre Tea</span>
</div>
</div>
<div id="locations" class="locations-img">
<h2>Locations</h2>
<div class="location">
<h3>Downtown</h3>
<div class="address">
<p>384 West 4th St</p>
<p>Suite 108</p>
<p>Portland, Maine</p>
</div>
</div>
<div class="location">
<h3>East Bayside</h3>
<div class="address">
<p>3433 Phisherman's Avenue</p>
<p>Northwest Corner</p>
<p>Portland, Maine</p>
</div>
</div>
<div class="location">
<h3>Oakdale</h3>
<div class="address">
<p>515 Crescent Avenue</p>
<p>Second Floor</p>
<p>Portland, Maine</p>
</div>
</div>
</div>
</div>
<footer>
<div class="contact">
<h2>The Tea Cozy</h2>
<h5>[email protected]</h5>
<p>917-555-8904</p>
</div>
<div class="copy">
<h5>copyright The Tea Cozy 2017</h5>
</div>
</footer>
</body>
</html>