-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (98 loc) · 2.99 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
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./resources/css/style.css" type="text/css">
<title>Tea Cozy</title>
</head>
<body>
<!--Header Topsection-->
<div class="site-header">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-tea-cozy-logo.png" alt="logo">
<ul>
<li>
<a href="#">Mission</a>
</li>
<li>
<a href="#">Featured Tea</a>
</li>
<li>
<a href="#">Locations</a>
</li>
</ul>
</div>
<!--Main container-->
<div class="container">
<!--Our Mission section-->
<div class="section-one">
<div class="section-one-content">
<h2>Our Mission</h2>
<h4>Handpicked, Artisanally Curated,Free Range, Sustainable,Small Batch, Fair Trade, Organic Tea</h4>
</div>
</div>
<div id="section-two">
<!--Tea of the month section-->
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Cozy?</h4>
</div>
<div class="section-three">
<div class="img">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-berryblitz.jpg" alt="berry blitz">
<p>Fall Berry Blitz Tea</p>
</div>
<div class="img">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-spiced-rum.jpg" alt="tea crate">
<p>Spice Rum Tea</p>
</div>
<div class="img">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-donut.jpg" alt="donut">
<p>Seasonal Donuts</p>
</div>
<div class="img">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-donut.jpg" alt="donut">
<p>Mytle Ave Tea</p>
</div>
<div class="img">
<img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-4/img-bedford-bizarre.jpg" alt="bedford bizarre tea">
<p>Bedford Bizarre Tea</p>
</div>
</div>
<!--Locations-->
<div class="section-four">
<div class="section-four-text">
<h2>Locations</h2>
</div>
<div class="section-four-main">
<div id="section-four-box1">
<h3>Downtown</h3>
<p>384 West 4th St</p>
<p>Suite</p>
<p>Portland,Maine</p>
</div>
<div id="section-four-box2">
<h3>East Bayside</h3>
<p>3433 Phisherman's Avenue</p>
<p>(Northwest Corner)</p>
<p>Portland,Maine</p>
</div>
<div id="section-four-box3">
<h3>Oakdale</h3>
<p>515 Crescent Avenue</p>
<p>Second Floor</p>
<p>Portland,Maine</p>
</div>
</div>
</div>
<!--secondary footer-->
<div class="topfooter">
<h2>The Tea Cozy</h2>
<h5>[email protected]</h5>
<p>917-555-8904</p>
</div>
<!--primary footer-->
<div class="lowfooter">
<p>copyright The Tea Cozy 2017</p>
</div>
</div>
</body>
</html>