-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathBaby Care Category Page HTML.html
121 lines (110 loc) · 5.64 KB
/
Baby Care 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
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
<!DOCTYPE html>
<html>
<title>
Baby Care 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'>Baby Care Products</h2>
</div>
<!--box-container------>
<div class="product-container">
<!--box---------->
<div class="product-box" style = "height: 95%;">
<img alt="Johnson's Baby Oil" src="https://i.imgur.com/0LKWxiJ.jpg">
<strong>Johnson's Baby Oil</strong>
<span class="quantity">500 ml</span>
<span class="price">Rs. 425</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="Little's Baby Wipes" src="https://i.imgur.com/6rlktPI.jpg">
<strong>Little's Baby Wipes</strong>
<span class="quantity">80 Wipes</span>
<span class="price">Rs. 95</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="Mama Earth Baby Moisturizer" src="https://i.imgur.com/DEONooZ.jpg">
<strong>Mama Earth Baby Moisturizer </strong>
<span class="quantity">400 ml</span>
<span class="price">Rs. 339.15</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">
<img alt="imalaya Baby Shampoo" src="https://i.imgur.com/fuAMCYN.jpg">
<strong>Himalaya Baby Shampoo</strong>
<span class="quantity">400 ml</span>
<span class="price">Rs. 230</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">
<img alt="Johnson's Baby Powder" src="https://i.imgur.com/HsECirZ.jpg">
<strong>Johnson's Baby Powder</strong>
<span class="quantity">200 g</span>
<span class="price">Rs. 155</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">
<img alt="Pampers Baby Pants" src="https://i.imgur.com/97mm2rX.jpg">
<strong>Pampers Baby Pants</strong>
<span class="quantity">58 Pants</span>
<span class="price">Rs. 699</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>