-
Notifications
You must be signed in to change notification settings - Fork 0
/
browse.php
82 lines (81 loc) · 1.65 KB
/
browse.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
<!DOCTYPE html>
<html>
<head>
<title>Online Auction - Browse Items</title>
<style>
body {
background-color: #f4f4f4;
font-family: Arial, sans-serif;
}
h1 {
color: #333;
text-align: center;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
background-color: #fff;
border-radius: 5px;
padding: 20px;
margin-bottom: 10px;
}
h3 {
color: #333;
}
p {
color: #666;
margin-bottom: 10px;
}
button {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
button a {
color: #fff;
text-decoration: none;
}
.center {
display: flex;
justify-content: center;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Online Auction - Browse Items</h1>
<!-- Item List -->
<ul>
<li>
<h3>Guitar</h3>
<p>Description :A Fender Stratocaster guitar</p>
<p>Price: ₹5000 </p>
</li>
<li>
<h3>Mobile</h3>
<p>Description :A brand new Oppo phone</p>
<p>Price: ₹15000</p>
</li>
<li>
<h3>Paintings</h3>
<p>Description :A collection of beautiful painting</p>
<p>Price: ₹25000</p>
</li>
<li>
<h3>Jersey</h3>
<p>Description :Indian Cricket team all format jerseys</p>
<p>Price: ₹100000</p>
</li>
<!-- Add more items as needed -->
</ul>
<div class="center">
<button><a href="home.php">BACK TO HOME</a></button>
</div>
</body>
</html>