5-Footer
Video
Steps
Except for a few CSS tweaks, we'll finish our HTML by adding the code for the footer.
<footer> <!--Legal items, navigational items--> <span>©2017 </span> <ul id="menuFooter"> <li><a href="#">Sitemap</a></li> <li><a href="#">Privacy Policy</a></li> <li><a href="#">Terms of Use</a></li> <li>Website by Shew</li> </ul> </footer>
That's all we need for the footer for now. Pretty simple module.
Notice the
<span>
and the ©. What are those doing? See if you can figure it out,although the video will explain.
The code will look like this awe-inspiring masterpiece:
Next we'll start adding our CSS to finally make our store look pretty.
Last updated