<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu Bar</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="menu-bar">
<div class="tab">Home</div>
<div class="tab">News</div>
<div class="tab">Contact</div>
</div>
</body>
</html>
body {
margin: 0;
}
.menu-bar {
width: 100%;
height: 60px;
background-color: black;
display: flex;
}
.tab {
width: 120px;
height: 100%;
color: white;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
transition: background-color 0.3s;
}
.tab:hover {
background-color: #4CAF50;
}