href does not work in any way [closed]

-5

My href does not work at all:

 <div class="container-contact1-form-btn">
            <a href="FormularioDeBusca.html">
                <button class="contact1-form-btn">Formulario de Busca</button>
            </a>
 </div>

In case the form I'm referencing is wrong.

    
asked by anonymous 13.03.2018 / 15:49

1 answer

-1

Use this way

<div class="container-contact1-form-btn">
            <a href="FormularioDeBusca.html" class="contact1-form-btn">Formulario de Busca</a>
        </div>
    
13.03.2018 / 15:58