I have a page, let's say page2, filled with several <section>
:
<section class="box special" id="section1">
//
</section>
<section class="box special" id="section2">
//
</section>
<section class="box special" id="section3">
//
</section>
<section class="box special" id="section4" style="background:#3399ff;">
//
</section>
Then I have another page, page1, in which I wanna put an anchor link
<ul class="actions">
<li><a href="page2.php" class="button">Link to page2</a></li>
</ul>
What I'm trying to achieve is to set up this anchors links in order to get to a specific <section>
in page2, not just at the top of page2. Is that possible? And, if so, how?