-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpro.php
More file actions
76 lines (73 loc) · 2.9 KB
/
pro.php
File metadata and controls
76 lines (73 loc) · 2.9 KB
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
<?php
include('header.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<style>
#main{
margin-top: 3rem ;
margin-left:calc(100% - 85rem) ;
display: grid;
grid-template-columns: 400px 400px 400px;
gap: 3rem;
}
.main img{
width:400px;
}
.card-img-top{
width: 350px;
height: 250px;
margin-bottom: 50px;
}
.card-img-top:hover{
transform:scale(1.1);
}
</style>
</head>
<body>
<div id="main">
<div class="card" style="width: 350px; border: none; border-bottom: 3px solid #ddd; border-radius: 0%;">
<img src="s4.jpg" class="card-img-top" alt="Error" width="200px" height="200px" style="border-radius: 0px;">
<div class="card-body">
<h5 class="card-title" style="font-weight:bold;">Sofa House </h5>
<p class="card-text" style="font-weight:bold;">
<!-- A fertiliser is a natural or artificial substance containing chemical elements that improve growth ....</p> -->
<!-- <h2>₹ 20/Kg</h2> -->
<a href="#" class="btn btn-primary">Buy Now</a>
</div>
</div>
<div class="card" style="width: 350px; border: none; border-bottom: 3px solid #ddd; border-radius: 0%;">
<img src="s5.jpg" class="card-img-top" alt="Error" width="200px" height="200px" style="border-radius:0px" >
<div class="card-body">
<h5 class="card-title" style="font-weight:bold;"></h5>
<p class="card-text" style="font-weight:bold;">
</p>
<!-- <h2>₹ 10/Kg</h2> -->
<a href="#" class="btn btn-primary">Buy Now</a>
</div>
</div>
<div class="card" style="width: 350px; border: none; border-bottom: 3px solid #ddd; border-radius: 0%;" >
<img src="s6.jpg" class="card-img-top" alt="Error" width="200px" height="200px" style="border-radius:0px">
<div class="card-body">
<h5 class="card-title" style="font-weight:bold;">Manure</h5>
<p class="card-text" style="font-weight:bold;">
</p>
<h2></h2>
<a href="#" class="btn btn-primary">Buy Now</a>
</div>
</div>
</div>
</body>
</html>
<?php
include('footer.php');
?>