5-Footer

Video

Steps

  1. Except for a few CSS tweaks, we'll finish our HTML by adding the code for the footer.

    <footer>
         <!--Legal items, navigational items-->
         <span>&copy;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>
  2. That's all we need for the footer for now. Pretty simple module.

  3. Notice the <span> and the ©. What are those doing? See if you can figure it out,

    although the video will explain.

  4. The code will look like this awe-inspiring masterpiece:

    End of the Module

  5. Next we'll start adding our CSS to finally make our store look pretty.

Last updated