-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (91 loc) · 3.2 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tea-shop</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<a href="#mission-target"><img src="images/img-tea-cozy-logo.png" alt="website-logo"/></a>
<nav>
<ul>
<li><a href="#mission-target">mission</a></li>
<li><a href="#featured">featured</a></li>
<li><a href="#location">location</a></li>
</ul>
</nav>
</header>
<a href="" id="mission-target"></a>
<main>
<section class="hero">
<div class=mission>
<h2 >our mission</h2>
<p>To provide our customers with the best tasting, all natural, USDA Organic teas for their everyday lives</p>
</div>
</section>
<a href="" id="featured"></a>
<section class='tea-of-month'>
<h2>tea of the month</h2>
<p>What's Steeping at The Tea shop?</p>
<div class="tea-container">
<figure>
<img src="images/img-berryblitz.jpg" alt="">
<figcaption>fall belly blitz tea</figcaption>
</figure>
<figure>
<img src="images/img-spiced-rum.jpg" alt="">
<figcaption>Spiced Rum Tea</figcaption>
</figure>
<figure>
<img src="images/img-donut.jpg" alt="">
<figcaption>seasonal donuts</figcaption>
</figure>
<figure>
<img src="images/img-myrtle-ave.jpg" alt="">
<figcaption>Myrtle Ave Tea</figcaption>
</figure>
<figure>
<img src="images/img-bedford-bizarre.jpg" alt="">
<figcaption>Bedford Bizarre tea</figcaption>
</figure>
</div>
</section>
<a href="" id="location"></a>
<section class="location">
<h2>Locations</h2>
<div class="location-container">
<div>
<h3>Mumbai</h3>
<p>B/604, Siddhi Avenue</p>
<p>Chikuwadi</p>
<p>Maharashtra, india</p>
</div>
<div>
<h3>banglore</h3>
<p>59, Devraj Building</p>
<p>S V Road</p>
<p>karnataka, india</p>
</div>
<div>
<h3>kochi</h3>
<p>51, Park avenue</p>
<p>Panampilly Nagar</p>
<p>kerala, india</p>
</div>
</div>
</section>
</main>
<footer>
<h2>the tea shop</h2>
<address styple="text-transform: lowercase;">
<p>contact@theteashop.com</p>
<p>952-XXXX-698</p>
</address>
<p>©2021 athul jyothis. Some Rights Reserved.
</p>
</footer>
</body>
</html>