Html & CSS create responsive menu [closed]

1

I need your help, I'm programming a website, I want it to be responsive. I created a bar, this is responsive, and I placed the menu horizontally on the right side of the screen, on the left side I put the logo on my site, but this one is not responsive ... the code I have is the following:

<body>
  <div class="barra">
    <div class="logo">
      <a href="home.html"><img src="logopequeno1.png"  width="50%" height="10%"></a>
    </div>
    <div class="menu">
      <ul>
        <li><a href="novo.html">Sobre</a></li>
        <li><a href="portefolio.html">Portefólio</a></li>
        <li><a href="contactos.html">Contactos</a></li>
      </ul>
    </div>
  </div>
</body>

Why can not I put the responsive logo just like the menu?

    
asked by anonymous 03.12.2015 / 16:40

0 answers