-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMedicine Category Page HTML.html
121 lines (110 loc) · 5.54 KB
/
Medicine 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>
Medicines
</title>
<script src="https://kit.fontawesome.com/5471644867.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="Medicine 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'>Medicines</h2>
</div>
<!--box-container------>
<div class="product-container">
<!--box---------->
<div class="product-box" style = "height: 95%;">
<img alt="Cetirizine" src="https://i.imgur.com/QWMkLQ6.jpg">
<strong>Cetirizine 10mg</strong>
<span class="quantity">10 Tablets</span>
<span class="price">Rs. 16.10</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="CUFRIL-D Cough Syrup" src="https://i.imgur.com/t3jlpYD.jpg">
<strong>CUFRIL-D Cough Syrup</strong>
<span class="quantity"></span>
<span class="price">Rs. 88</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="Cheston Cold" src="https://i.imgur.com/KqTyIOv.png">
<strong>Cheston Cold </strong>
<span class="quantity">10 Tablets</span>
<span class="price">Rs. 34</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="Dolo 650" src="https://i.imgur.com/ZgxivW4.jpg">
<strong>Dolo 650</strong>
<span class="quantity">15 Tablets</span>
<span class="price">Rs. 24.75</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="Metolar XR 50" src="https://i.imgur.com/VfI11ZP.png">
<strong>Metolar XR 50</strong>
<span class="quantity">15 Tablets</span>
<span class="price">Rs. 77.66</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="Gelusil Tablets" src="https://i.imgur.com/v7EIJzM.jpg">
<strong>Gelusil Chewable Tablets</strong>
<span class="quantity">10 Tablets</span>
<span class="price">Rs. 15.92</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>