Load menu from html file is not working
hi. i`m trying to load a menu from an other html page. (something simple, but it`s not working)
My index.html:
and the nav.html file:
- <div class="navbar-header">
- <span class="sr-only">Navegación</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="navbar-brand" href="index.html">Nombre Empresa</a>
- </div>
- <!-- Collect the nav links, forms, and other content for toggling -->
- <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
- <ul class="nav navbar-nav navbar-right">
- <li>
- <a href="about.html">La Empresa</a>
- </li>
- <li>
- <a href="services.html">Servicios</a>
- </li>
- <li>
- <a href="contact.html">Contacto</a>
- </li>
- <li class="dropdown">
- <a href="#" class="dropdown-toggle" data-toggle="dropdown">Productos <b class="caret"></b></a>
- <ul class="dropdown-menu">
- <li>
- <a href="portfolio-1-col.html">1 Categoría 1</a>
- </li>
- <li>
- <a href="portfolio-2-col.html">2 Categoría 2</a>
- </li>
- <li>
- <a href="portfolio-3-col.html">3 Categoria 3</a>
- </li>
- <li>
- <a href="portfolio-4-col.html">4 Categoria 4</a>
- </li>
- <li>
- <a href="portfolio-item.html">Producto Item</a>
- </li>
- </ul>
- </li>
-
what i`m doing wrong?
thanks in advance.