Menu
Coddy logo textTech

Footer Section

Part of the Fundamentals section of Coddy's HTML journey — lesson 56 of 60.

challenge icon

Challenge

Easy

We’re almost done! Now, let’s finish up by adding the footer section with some social media links.

  1. After the div with the registration form section, create a new <div> for the footer.
  2. Inside the <div>, add an <h2> tag with the text "Follow Us"
  3. Add links to social media profiles using <a> tags. For example:
    1. A link to your Twitter profile
    2. A link to your Facebook profile
  4. Make sure the links open in a new tab/window.

You can use some fake links, or use Coddy's socials ;)

Use the div tag not the footer tag in this case.

Try it yourself

<!DOCTYPE html>
<html>
    <body>
        <!-- Write code here -->
    </body>
</html>

All lessons in Fundamentals