-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patha.php
150 lines (141 loc) · 4.75 KB
/
a.php
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style1.css">
</head>
<body style="background-color:lightpink;">
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label class="logo">Women's Health Hub</label>
<ul>
<li><a class="active" href="#">Home</a></li>
<li><a href="#">Explore</a></li>
<li><a href="#">Complaints</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Reviews</a></li>
</ul>
</nav>
<div class="container">
<div class="row text-center py-5">
<div class="col-md-3 col-sm-6 my-3 my-md-0">
<form action="index.php" method="post">
<div class="card shadow">
<div>
<img src="./img/a.png" alt="image1" class="img-fluid card-img-top">
</div>
<div class="card-body">
<h5 class="card-title">Product1</h5>
<h6>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</h6>
<p class="card-text">
Some quick example to build on the card.
</p>
<h5>
<span style="text-decoration:line-through;">₹449</span>
<span class="price">₹399</span>
</h5>
<button type="submit" class="btn btn-warning my-3" name="add">Add to Cart <i class="fas fa-shopping-cart"></i></button>
</div>
</body>
</div>
</form>
</div>
<div class="col-md-3 col-sm-6 my-3 my-md-0">
<form action="index.php" method="post">
<div class="card shadow">
<div>
<img src="./img/b.png" alt="image2" class="img-fluid card-img-top">
</div>
<div class="card-body">
<h5 class="card-title">Product2</h5>
<h6>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</h6>
<p class="card-text">
Some quick example to build on the card.
</p>
<h5>
<!-- <small><s style="color black:">₹359</s></small> -->
<span style="text-decoration:line-through;">₹359</span>
<span class="price">₹289</span>
</h5>
<button type="submit" class="btn btn-warning my-3" name="add">Add to Cart <i class="fas fa-shopping-cart"></i></button>
</div>
</body>
</div>
</form>
</div>
<div class="col-md-3 col-sm-6 my-3 my-md-0">
<form action="index.php" method="post">
<div class="card shadow">
<div>
<img src="./img/c.png" alt="image3" class="img-fluid card-img-top">
</div>
<div class="card-body">
<h5 class="card-title">Product3</h5>
<h6>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</h6>
<p class="card-text">
Some quick example to build on the card.
</p>
<h5>
<span style="text-decoration:line-through;">₹249</span>
<span class="price">₹219</span>
</h5>
<button type="submit" class="btn btn-warning my-3" name="add">Add to Cart <i class="fas fa-shopping-cart"></i></button>
</div>
</body>
</div>
</form>
</div>
<div class="col-md-3 col-sm-6 my-3 my-md-0">
<form action="index.php" method="post">
<div class="card shadow">
<div>
<img src="./img/d.png" alt="image4" class="img-fluid card-img-top">
</div>
<div class="card-body">
<h5 class="card-title">Product4</h5>
<h6>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</h6>
<p class="card-text">
Some quick example to build on the card.
</p>
<h5>
<span style="text-decoration:line-through;">₹1499</span>
<span class="price">₹1099</span>
</h5>
<button type="submit" class="btn btn-warning my-3" name="add">Add to Cart <i class="fas fa-shopping-cart"></i></button>
</div>
</body>
</div>
</form>
</div>
</div>
</div>