-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (83 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Tea Cozy</title>
</head>
<body>
<header>
<div class="logo">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-tea-cozy-logo.png">
</div>
<nav>
<span><a href="#">Mission</a></span>
<span><a href="#">Features Teas</a></span>
<span><a href="#">Locations</a></span>
</nav>
</header>
<div id="main">
<div class="banner">
<h2>Our Mission</h2>
<h4>Handpicked, Artinsanally Curated, Free-range, Sustainable, Small Batch, Fair Trade, Organic Tea</h4>
</div>
</div>
<div id="teaOfMonth">
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy?</h4>
<div class="tom">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-berryblitz.jpg" alt="berry blitz tea">
<h4>Fall Berry Blitz Tea</h4>
</div>
<div class="tom">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-spiced-rum.jpg" alt="spiced rum tea">
<h4>Spiced Rum Tea</h4>
</div>
<div class="tom">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-donut.jpg" alt="seasonal donuts">
<h4>Seasonal Donuts</h4>
</div>
<div class="tom">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-myrtle-ave.jpg" alt="myrtle avenue tea">
<h4>Myrtle Ave Tea</h4>
</div>
<div class="tom">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-bedford-bizarre.jpg" alt="bedford bizzare tea">
<h4>Bedford Bizzare</h4>
</div>
</div>
<div id="locations">
<h2>Locations</h2>
<div id="locations2">
<div class="loc">
<h3>Downtown</h3>
<p>384 West 4th St</p>
<p>Suite 108</p>
<p>Portland, Maine</p>
</div>
<div class="loc">
<h3>East Bayside</h3>
<p>3433 Phisherman's Avenue</p>
<p>(Northwest Corner)</p>
<p>Portland, Maine</p>
</div>
<div class="loc">
<h3>Oakdale</h3>
<p>515 Crescent Avenue</p>
<p>Second Floor</p>
<p>Portland, Maine</p>
</div>
</div>
</div>
<footer>
<div class="info">
<h2 class="title">The Tea Cozy</h2>
<h5>contact@theteacozy.com</h5>
<h5>917-555-8904</h5>
</div>
</footer>
<div class="copyright">
<h5>© The Tea Cozy 2017</h5>
</div>
</body>
</html>