-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathFruits Category Page HTML.html
121 lines (110 loc) · 5.38 KB
/
Fruits 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>
Fruits and Vegetables
</title>
<script src="https://kit.fontawesome.com/5471644867.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="Fruits 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'>Fruits and Vegetables</h2>
</div>
<!--box-container------>
<div class="product-container">
<!--box---------->
<div class="product-box">
<img alt="apple" src="https://i.imgur.com/vUJ2JKU.png">
<strong>Apple</strong>
<span class="quantity">1 KG</span>
<span class="price">Rs. 100</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="chili" src="https://i.imgur.com/rFhSMZN.png">
<strong>Chili</strong>
<span class="quantity">1 KG</span>
<span class="price">Rs. 80</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="apple" src="https://i.imgur.com/sGLggWL.jpg">
<strong>Onion</strong>
<span class="quantity">1 KG</span>
<span class="price">Rs. 50</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="apple" src="https://i.imgur.com/WFjH6ui.png">
<strong>Potato</strong>
<span class="quantity">1 KG</span>
<span class="price">Rs. 60</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="oranges" src="https://i.imgur.com/5nFAIJ8.jpg">
<strong>Oranges</strong>
<span class="quantity">1 KG</span>
<span class="price">Rs. 80</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="apple" src="https://i.imgur.com/8l5hDhS.png">
<strong>Tomato</strong>
<span class="quantity">1 KG</span>
<span class="price">Rs. 80</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>