Redirect to another part of the same page php [closed]

0

I want to make a one page site, but I do not know exactly how to do it. As in the example: link Who can help me thank you!

    
asked by anonymous 12.11.2018 / 16:39

1 answer

0

You need an anchor.

In the link you want to be clicked do so:

<a class="qualquer_class" href="#Form-Interesse"></a>

Now the div you want to appear when you click, do so:

<div class="qualquer_class" id="Form-Interesse"></div>
    
12.11.2018 / 16:47