-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (76 loc) · 2.97 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
<html>
<head>
<link href="./style.css" rel="stylesheet">
</head>
<body>
<header>
<img class="logo" src="./resources/images/img-tea-cozy-logo.webp" alt="tea cozy logo">
<nav>
<ul>
<li>Mission</li>
<li>Featured Tea</li>
<li>Locations</li>
</ul>
</nav>
</header>
<div class="mission">
<img src="./resources/images/img-mission-background.webp" alt="a container filled with tea leaves">
<h2 class="mission-text">Our Mission</h2>
<h4 class="mission-text">Handpicked, Artisanally Curated, Free Range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
<div class="tom">
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy?</h4>
<div class="tom-square">
<img src="./resources/images/img-berryblitz.webp" alt="a mug of tea with berries in it">
<h4>Fall Berry Blitz Tea</h4>
</div>
<div class="tom-square">
<img src="./resources/images/img-spiced-rum.webp" alt="a box of tea that says 'it pays to buy good tea'">
<h4>Spiced Rum Tea</h4>
</div>
<div class="tom-square">
<img src="./resources/images/img-donut.webp " alt="a donut on a tray">
<h4>Seasonal Donuts</h4>
</div>
<div class="tom-square">
<img src="./resources/images/img-myrtle-ave.webp" alt="a cup of tea half covered by a sheet">
<h4>Myrtle Ave Tea</h4>
</div>
<div class="tom-square">
<img src="./resources/images/img-bedford-bizarre.webp" alt="a cup of tea beside a container of sugar">
<h4>Bedford Bizarre Tea</h4>
</div>
</div>
<div class="locations">
<img src="./resources/images/img-locations-background.webp" alt="a cup of tea on a table">
<h2>Locations</h2>
<div class="location-square">
<h3>Downtown</h3>
<h4>384 West 4th St</h4>
<h4>Suite 108</h4>
<h4>Portland, Maine</h4>
</div>
<div class="location-square">
<h3>East Bayside</h3>
<h4>3433 Phisherman's Avenue</h4>
<h4>(Northwest Corner)</h4>
<h4>Portland, Maine</h4>
</div>
<div class="location-square">
<h3>Oakdale</h3>
<h4>515 Crescent Avenue</h4>
<h4>Second Floor</h4>
<h4>Portland, Maine</h4>
</div>
</div>
<div class="contact">
<h2>The Tea Cozy</h2>
<h5>contact@theteacozy.com</h5>
<h5>917-555-8904</h5>
</div>
</body>
<footer>
<h5>copyright The Tea Cozy 2017</h5>
</footer>
</html>