I am struggling to understand why this issue keeps occurring:
I have thoroughly checked for errors, attempted multiple solutions, yet the problem persists. Please assist
body {
margin: 0;
padding: 0;
}
.logo {
margin: 0;
padding: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #000;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
.active {
background-color: #222;
}
<a href="index.html" class="logo">
<img src="img/logo.png" width=400em height=150em></img>
</a>
<div>
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>