My project fetches the background images when i run it using brackets, however it doesn't load when i directly open it from the directory and neither when i upload it to the server
Html code
<header>
<div class="header-logo"></div>
<nav class="nav clearfix">
<ul>
<li><a class="active" href="#">LOGIN</a></li>
<li><a href="#">SIGN UP</a></li>
<li><a href="#">PRODUCTS</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">HOME</a></li>
</ul>
</nav>
</header>
css:
.header-logo
{
width:20%;
background-image: url('/images/logo.png');
background-repeat: no-repeat;
height:80px;
float:left;
}
This is my directory structure :