href does not work at all

Asked

Viewed 155 times

-5

My href doesn’t 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 way I’m referencing is wrong.

  • 2

    There are at least 10 href in its code. What, exactly, You’re trying to do it and what’s the problem? I recommend that you do the [tour] to understand the basics of how the site works and read the [Ask] guide to see how to improve your question.

1 answer

-1


Use in this way

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.