-
Notifications
You must be signed in to change notification settings - Fork 0
/
wl_aboutus.php
119 lines (104 loc) · 3.62 KB
/
wl_aboutus.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
<?php
include("navbar.html");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bid Bazzar</title>
<!-- Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.1.0/fonts/remixicon.css" rel="stylesheet" />
<!-- Custom CSS -->
<style>
/* Custom styles */
body {
background-color: #f8f9fa;
font-family: Arial, sans-serif;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.jumbotron {
background-color: #343a40;
color: #fff;
padding: 40px;
margin-bottom: 30px;
border-radius: 0;
}
.feedback-button {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999;
padding: 10px 20px;
font-size: 16px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.feedback-button:hover {
background-color: #0056b3;
}
.navbar {
background-color: #343a40;
/* Add a semi-transparent black background */
backdrop-filter: blur(10px);
border-radius: 0px;
}
.navbar:hover {
background-color: #343a40bd;
box-shadow: 1px 1px 50px #343a40bd;
}
a {
list-style: none;
text-decoration: none;
}
a:hover {
text-decoration: none;
}
</style>
</head>
<body>
<!-- Page Title -->
<div class="jumbotron text-center">
<div class="container">
<h1 class="display-4">About Us</h1>
<p class="lead">Learn more about our company and mission.</p>
</div>
</div>
<!-- Main Content Area -->
<main>
<div class="container">
<section id="about-section">
<p>BidBazzar is a website where Users can browse and purchase a wide range of products,</p>
<p>and they also have the exciting option of participating in real-time auctions for exclusive items.</p>
<p>That's the beauty of a hybrid e-commerce website that combines live auctions with traditional product sales.</p>
<p>The platform offers a user-friendly interface, secure payment options, and robust auction functionalities, </p>
<p>creating a diverse and engaging online marketplace. </p>
</section>
<section id="auction-section">
<h2 class="text-center">Auction Feature</h2>
<!-- Insert auction functionality here -->
<p class="text-center">This is where you would integrate the auction feature.</p>
</section>
</div>
</main>
<footer class="bg-dark text-white text-center py-3">
<div class="container">
<p>© 2024 Bid Bazzar. All rights reserved.</p>
</div>
</footer>
<!-- Feedback Button -->
<!-- Bootstrap JS, Popper.js, jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>