-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.html
115 lines (101 loc) · 3.46 KB
/
store.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@500&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@500&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="store.css">
<title>AyurStore</title>
</head>
<body>
<div class="container">
<div class="navbar">
<div class="logo">
<h3>AyurStore</h3>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Plants</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
<img src="cart.png" alt="" width="40px" height="40px" >
</div>
<div class="row">
<div class="col2">
<h1>"Ayurveda<br> is Science of Life."</h1>
<a herf="" class="btn">Buy Now</a>
</div>
<div class="col2">
<img src="plant.png" alt="Plant Image">
</div>
</div>
</div>
<! -----------------------------catergories--------------------!>
<div class="categories">
<h2>Top Sold Plants</h1>
<div class="small-contain">
<div class="row">
<div class="col3">
<img src="1.jpg" alt="">
<h4>Tulsi Plant</h4>
<div class="rating"></div>
<p1>₹150</p1>
</div>
<div class="col3">
<img src="2.jpg" alt="">
<h4>Mint seed</h4>
<p2>₹100</p2>
</div>
<div class="col3">
<img src="3.jpg" alt="">
<h4>Dandelions</h4>
<p3>₹115</p3>
</div>
<div class="col3">
<img src="5.jpg" alt="">
<h4>Neem Seeds</h4>
<p4>₹200</p4>
</div>
<div class="row">
<div class="col3">
<img src="7.jpg" alt="">
<h4>Garlic Seeds</h4>
<div class="rating"></div>
<p1>₹100</p1>
</div>
<div class="col3">
<img src="8.jpg" alt="">
<h4>Flame of Forest</h4>
<p2>₹120</p2>
</div>
<div class="col3">
<img src="9.jpg" alt="">
<h4>Valeriana</h4>
<p3>₹240</p3>
</div>
<div class="col3">
<img src="10.jpg" alt="">
<h4>Ginkgo Biloba</h4>
<p4>₹450</p4>
</div>
</div>
<div class="offer">
<div class="small contain">
<div class="col7">
<img src="Picsart_24-09-02_11-28-28-280.png" alt="" class="offer-img" height="400px" width="400px" >
</div>
<div class="col2">
<h5>70% off</h5>
<h9>Rose Petel powder</h9>
</div>
</div>
</div>
</body>
</html>