-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathBeauty Category Page HTML.html
121 lines (110 loc) · 5.65 KB
/
Beauty 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>
Beauty Products
</title>
<script src="https://kit.fontawesome.com/5471644867.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="Beauty 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'>Beauty Products</h2>
</div>
<!--box-container------>
<div class="product-container">
<!--box---------->
<div class="product-box" style = "height: 95%;">
<img alt="Lakme Blush and Glow Face Wash" src="https://i.imgur.com/RulBeyf.jpg">
<strong>Lakme Blush and Glow Face Wash</strong>
<span class="quantity">100 g</span>
<span class="price">Rs. 144</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="Ponds Men Pollution Out Facewash" src="https://i.imgur.com/azJYLRo.jpg">
<strong>Ponds Men Pollution Out Facewash</strong>
<span class="quantity">100 g</span>
<span class="price">Rs. 159</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="Nivea Body Milk" src="https://i.imgur.com/XroaNlX.jpg">
<strong>Nivea Body Milk</strong>
<span class="quantity">200 ml</span>
<span class="price">Rs. 178</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="Nivea Lip Balm" src="https://i.imgur.com/0eK7qXj.jpg">
<strong>Nivea Lip Balm</strong>
<span class="quantity">1</span>
<span class="price">Rs. 151</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="Berado Hair Growth Oil" src="https://i.imgur.com/qnTjfBG.jpg">
<strong>Berado Hair Growth Oil</strong>
<span class="quantity">50 ml</span>
<span class="price">Rs. 585</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="Olay Total Effects Day Cream" src="https://i.imgur.com/Hmo66oR.jpg">
<strong>Olay Total Effects Day Cream</strong>
<span class="quantity">50 g</span>
<span class="price">Rs. 749</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>