-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
122 lines (109 loc) · 2.84 KB
/
home.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
<?php include('server.php') ?>
<!DOCTYPE html>
<html>
<head>
<title>Online Auction</title>
<style>
.hover-effect{
color:;
}
.hover-effect:hover{
color:red;
}
/* CSS styles for the entire page */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: grid;
grid-template-rows: auto 1fr auto;
min-height: 100vh;
background-image: url('bg.jpg');/* Replace 'background-image.jpg' with your image file path */
background-size: cover;
}
/* CSS styles for the header section */
header {
background-color: #f2f2f2;
padding: 20px;
text-align: center;
position: relative;
}
/* CSS styles for the navigation section */
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
nav li {
margin: 0 10px;
}
nav a {
color: #333;
text-decoration: none;
}
/* CSS styles for the content section */
main {
padding: 20px;
position: relative;
overflow: hidden;
}
/* CSS styles for the moving text */
.moving-text {
position: absolute;
top: 50%;
left: 100%;
transform: translate(-50%, -50%);
white-space: nowrap;
color: green;
font-size: 24px;
animation: moveText 20s linear infinite;
}
@keyframes moveText {
0% {
left: 100%;
}
100% {
left: -100%;
}
}
/* CSS styles for the logo */
.logo {
position: absolute;
top: 10px;
right: 10px;
max-width: 100px;
}
/* CSS styles for the footer section */
footer {
background-color: #f2f2f2;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<img src="logo.png" alt="Online Auction Logo" class="logo">
<h1 style="color: #ff6600;">Welcome to the Online Auction,<span id="username"><?php echo $username; ?></span>!</h1>
</header>
<nav>
<ul>
<li><a href="home.php"><p class="hover-effect">Home</p></a></li>
<li><a href="browse.php"><p class="hover-effect">Browse Items</p></a></li>
<li><a href="bids.php"><p class="hover-effect">My Bids</p></a></li>
<li><a href="categories.php"><p class="hover-effect">Buy Items</p></a></li>
<li><a href="account.php"><p class="hover-effect">My Account</p></a></li>
<li><a href="login.php"><p class="hover-effect">Logout</p></a></li>
</ul>
</nav>
<main>
<div class="moving-text"><p class="hover-effect"> AUCTION BEYOND ACTION..!!</p></div>
<!-- Content goes here -->
</main>
<footer>
<p>© 2023 Online Auction. All rights reserved.</p>
</footer>
</body>
</html>