-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathGardening Category Page HTML.html
76 lines (65 loc) · 3.2 KB
/
Gardening Category Page HTML.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
<!DOCTYPE html>
<html>
<title>
Gardening Products
</title>
<script src="https://kit.fontawesome.com/5471644867.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="Baby Care Category Page CSS.css">
<link rel="shortcut icon" type="image/jpg" href="C:\Users\hp\Desktop\College\First Semester\Introduction To Web Technologies\Notepad ++ Files\Project\favicon.ico"/>
<body>
<section id="popular-product">
<!--heading----------->
<div class="product-heading">
<h2 class = 'fruits-heading'>Gardening Products</h2>
</div>
<!--box-container------>
<div class="product-container">
<!--box---------->
<div class="product-box" style = "height: 95%;">
<img alt="Gardening Gloves" src="https://i.imgur.com/dBujtOd.jpg">
<strong>Gardening Gloves</strong>
<span class="quantity">1</span>
<span class="price">Rs. 160</span>
<!--cart-btn------->
<a href="Shopping Cart HTML.html" class="cart-btn" style = 'text-decoration: none;'>
<i class="fas fa-shopping-bag"></i> Add to Cart
</a>
<!--like-btn------->
<a class="like-btn" style = 'text-decoration: none;'>
<i class="far fa-heart"></i>
</a>
</div>
<!--box---------->
<div class="product-box" style="height: 95%;">
<img alt="Watering Can" src="https://i.imgur.com/tB2zQj8.jpg">
<strong>Watering Can</strong>
<span class="quantity">1</span>
<span class="price">Rs. 249</span>
<!--cart-btn------->
<a href="Shopping Cart HTML.html" class="cart-btn" style = 'text-decoration: none;'>
<i class="fas fa-shopping-bag"></i> Add to Cart
</a>
<!--like-btn------->
<a class="like-btn" style = 'text-decoration: none;'>
<i class="far fa-heart"></i>
</a>
</div>
<!--box---------->
<div class="product-box" style="height: 95%;">
<img alt="Unigrow Manure" src="https://i.imgur.com/xguc80f.jpg">
<strong>Unigrow Manure</strong>
<span class="quantity">900 g</span>
<span class="price">Rs. 196</span>
<!--cart-btn------->
<a href="Shopping Cart HTML.html" class="cart-btn" style = 'text-decoration: none;'>
<i class="fas fa-shopping-bag"></i> Add to Cart
</a>
<!--like-btn------->
<a class="like-btn" style = 'text-decoration: none;'>
<i class="far fa-heart"></i>
</a>
</div>
</div>
</section>
</body>
</html>