-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (106 loc) · 3.43 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
<!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 section -->
<header>
<div class="logo">
<img class="teacozy" src="./resources/images/img-tea-cozy-logo.png">
</div>
<nav>
<span class="links"><a href="#statement">Mission</a></span>
<span class="links"><a href="#teaOTM">Featured Tea</a></span>
<span class="links"><a href="#locations">Locations</a></span>
</nav>
</header>
<!-- main content -->
<main>
<!-- mission section -->
<section id="statement">
<div class="mission content">
<span class="wordplay"><h2>Our Mission</h2>
<h4>
Handpicked, Artisanally Curated, Free Range, Sustainable, Small
Batch, Fair Trade, Organic Tea
</h4>
</span>
</div>
</section>
<!-- tea of the month section -->
<section id="teaOTM">
<div class="tea content">
<div class="wordplay"><h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy?</h4>
</div>
<div class="tea list">
<div class="teabox">
<img class="teapic" src="./resources/images/img-berryblitz.jpg">
<h4 class="teaname">Fall Berry Blitz Tea</h4>
</div>
<div class="teabox">
<img class="teapic" src="./resources/images/img-spiced-rum.jpg">
<h4 class="teaname">Spiced Rum Tea</h4>
</div>
<div class="teabox">
<img class="teapic" src="./resources/images/img-donut.jpg">
<h4 class="teaname">Seasonal Donuts</h4>
</div>
<div class="teabox">
<img class="teapic" src="./resources/images/img-myrtle-ave.jpg">
<h4 class="teaname">Myrtle Ave Tea</h4>
</div>
<div class="teabox">
<img class="teapic" src="./resources/images/img-bedford-bizarre.jpg">
<h4 class="teaname">Bedford Bizarre Tea</h4>
</div>
</div>
</div>
</section>
<!-- locations section -->
<section id="locations">
<div class="location content">
<div class="where">
<h2>Locations</h2>
</div>
<div class="locations">
<div class="locbox">
<h3>Downtown</h3>
<h4>384 West 4th St</h4>
<h4>Suite 108</h4>
<h4>Portland, Maine</h4>
</div>
<div class="locbox">
<h3>East Bayside</h3>
<h4>3433 Phisherman's Avenue</h4>
<h4>(Northwest Corner)</h4>
<h4>Portland, Maine</h4>
</div>
<div class="locbox">
<h3>Oakdale</h3>
<h4>515 Crescent Avenue</h4>
<h4>Second Floor</h4>
<h4>Portland, Maine</h4>
</div>
</div>
</div>
</section>
<!-- contact & copyright section -->
<section id="contacts">
<div class="contactbox">
<h2>The Tea Cozy</h2>
<h5>[email protected]</h5>
<h5>917-555-8904</h5>
</div>
</main>
<!-- Footer section -->
<footer>
<div class="copyright">
<h5>copyright The Tea Cozy 2017</h5>
</div>
</footer>
</body>
</html>