nav bar
Sat Nov 16 2024 02:38:34 GMT+0000 (Coordinated Universal Time)
Saved by
@wtlab
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Navbar</title>
<style>
/* Basic styling for the navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color:black;
padding: 10px;
color:white;
}
.navbar a {
color: green;
padding: 0px 15px;
}
.navbar a:hover {
background-color:red;
}
/* Styling for the logo */
</style>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<p>cvr</p>
<div >
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</div>
</body>
</html>
content_copyCOPY
Comments