Why is it that when I copy and paste this code into any .html document, it only runs correctly on the resources tab? The logo is only showing up on the resources page, even though it's using the same css stylesheet and html structure.
<div class="navigate">
<ul>
<li><img class="logo" src="logo2.png"></li>
<li><a href="index.html">Home</a></li>
<li><a href="news2.html">News</a></li>
<li class="dropdown">
<a href="resources2.html" class="dropbtn">Resources</a>
<div class="dropdown-content">
<a href="#">MINING</a>
<a href="#">CURRENCY</a>
<a href="#">TRADING</a>
<a href="#">LINKS</a>
</div>
</li>
<ul>
<li class="dropdown">
<a href="search2.html" class="dropbtn">Equipment</a>
<div class="dropdown-content">
<a href="#">GPU</a>
<a href="#">ASIC</a>
<a href="#">MOTHERBOARD</a>
<a href="#">ACCESORIES</a>
</div>
</li>
</ul>
</div>