parking system
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vehicle Parking</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
padding: 10px 20px;
border-bottom: 1px solid #ccc;
}
.logo {
font-size: 22px;
font-weight: bold;
color: red;
display: flex;
align-items: center;
}
.logo i {
margin-right: 8px;
}
.nav-links {
display: flex;
gap: 25px;
}
.nav-links a {
text-decoration: none;
color: black;
font-weight: bold;
position: relative;
}
.nav-links a:hover,
.nav-links a.active {
color: red;
}
.nav-links a.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 3px;
background-color: yellow;
border-radius: 50%;
}
.content {
background-color: #3d3d3d;
height: 100px;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<div class="navbar">
<div class="logo">
<i class="fa fa-car"></i> Vehicle Parking
</div>
<div class="nav-links">
<a href="index.html" class="active">HOME</a>
<a href="admin_login.html" >ADMINISTRATOR</a>
<a href="#">TICKET CHECKER</a>
<a href="user_login.html">USERS</a>
</div>
</div>
<div class="content"></div>
</body>
</html>