section html page code example
Example 1: link to section on page html
<!-- #top is the ID of the div where u wanna link to -->
<a href="#top">Go back to the top!</a>
<div id="top"></div>
Example 2: section tag in html
<section>
<h1>Heading</h1>
<p>Bunch of awesome content</p>
</section>