Looking to create a navigation menu that changes the CSS class to 'active' when selected? Take a look at the code below:
<ul class="smallmenuContainer">
<li><a class="active" href="index.html#red">Home</a></li>
<li><a href="index.html#green">About us</a></li>
<li><a href="index.html#blue">Works</a></li>
<li><a href="index.html#yellow">Contact us</a></li>
</ul>
<div class="introContainer">
<a name="red">red</a>
</div>
<div class="aboutContainer">
<a name="green">green</a>
</div>
<div class="galleryContainer">
<a name="blue">blue</a>
</div>
<div class="contactContainer">
</div>
<a name="yellow">yellow</a>
If you need help changing the corresponding css classes, feel free to ask!