-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (130 loc) · 4.7 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Tea Cozy</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<!-- Header section -->
<header>
<a href="index.html"><img src="./images/img-tea-cozy-logo.png"></a>
<nav>
<ul>
<li><a id="link" href="#banner">Mission</a></li>
<li><a id="link" href="#tea-images-section">Featured</a></li>
<li><a id="link" href="#locations-section">Locations</a></li>
</ul>
</nav>
</header>
<!-- End of Header -->
<!-- Main Content -->
<div class="main-content">
<!-- Banner section -->
<div id="banner">
<div class="bannermission">
<div class="center">
<h2>Our Mission</h2>
<h4>Handpicked, Artisanally Curated, Free Range, Sustainable,Samll Batch, Fair Trade, Organic Tea</h4>
</div>
</div>
</div>
<!-- End of Banner -->
<!-- The text of the month -->
<div class="center">
<h2>Tea of the Month</h2>
<h4>What's Steeping at The Tea Cozy ?</h4>
</div>
<!-- Tea images -->
<div id="tea-images-section">
<div class="featuredimages">
<div class="center">
<div class="image-container">
<img src="./images/img-berryblitz.jpg" />
</div>
<div class="center">
<h3>Fall Berry Blitz Tea</h3>
</div>
</div>
</div>
<div class="featuredimages">
<div class="center">
<div class="image-container">
<img src="./images/img-spiced-rum.jpg" />
</div>
<div class="center">
<h3>Spiced Rum Tea</h3>
</div>
</div>
</div>
<div class="featuredimages">
<div class="center">
<div class="image-container">
<img src="./images/img-donut.jpg" />
</div>
<div class="center">
<h3>Seasonal Donuts</h3>
</div>
</div>
</div>
<div class="featuredimages">
<div class="center">
<div class="image-container">
<img src="./images/img-myrtle-ave.jpg" />
</div>
<div class="center">
<h3>Myrtle Ave Tea</h3>
</div>
</div>
</div>
<div class="featuredimages">
<div class="center">
<div class="image-container">
<img src="./images/img-bedford-bizarre.jpg" />
</div>
<div class="center">
<h3>Bedford Bizarre Tea</h3>
</div>
</div>
</div>
</div> <!-- End of Tea images -->
<!-- Location Section -->
<div class="location-image-section">
<div id="locations"><h2>Locations</h2></div>
<div id="locations-section">
<div class="locationaround-town">
<h3>Downtown</h3>
<h4>384 West 4th St</h4>
<h4>Suite 108</h4>
<h4>Portland, Maine</h4></div>
<div class="locationaround-town">
<h3>East Bayside</h3>
<h4>3433 Phisherman's Avenue</h4>
<h4>(Northwest Corner)</h4>
<h4>Portland, Maine</h4></div>
<div class="locationaround-town">
<h3>Oakdale</h3>
<h4>515 Crescent Avenue</h4>
<h4>Second Floor</h4>
<h4>Portland, Maine</h4></div>
</div>
</div>
<!-- End of location Section -->
<div class="center">
<h3>The Tea Cozy</h3>
</div>
<!-- Contacts Section -->
<div class="center">
<h5>contact@teacozy.com</h5>
</div>
<!-- End of contacts -->
<!-- Footer-Copyright -->
<div class="copyright">
copyright The Tea Cozy 2022
</div>
<!-- End of Footer -->
</div> <!-- End of main content -->
</body>
</html>