1<!--1. create link tag with href containing "[#][section to direct] with name-->
2<a href = #about-section>About</a>
3
4<!--2. create identifier for the section you would like to navigate to with "id" = name-->
5<section id = "about-section"> <h1>This is the about section</h1> </section>
6
7
1<!-- #top is the ID of the div where u wanna link to -->
2<a href="#top">Go back to the top!</a>
3
4<div id="top"></div>