Hello everyone. I am currently working on customizing a website using an HTML and CSS template for a project, but I need to make some modifications.
My main goal is to add the company logo to the header, specifically in the top-left corner, however, I'm facing difficulties with this task.
Here is the code snippet:
<header id="masthead" class="site-header">
<nav id="primary-navigation" class="site-navigation">
<div class="container">
<div class = "navbar-logo">
<a href = "#" ><img src = "assets\img\logo.png"> </a>
</div>
<div class="collapse navbar-collapse" id="agency-navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="index.html" data-toggle="dropdown"><b>Home</b></a></li>
<li><a href="portfolio.html">Servizi</a></li>
<li><a href="contact.html">Contatti</b></li>
</ul>
</div>
</div>
</nav><!-- /.site-navigation -->
</header><!-- /#mastheaed -->