Footer Section
Part of the Fundamentals section of Coddy's HTML journey — lesson 56 of 60.
Challenge
EasyWe’re almost done! Now, let’s finish up by adding the footer section with some social media links.
- After the div with the registration form section, create a new
<div>for the footer. - Inside the
<div>, add an<h2>tag with the text "Follow Us" - Add links to social media profiles using
<a>tags. For example:- A link to your Twitter profile
- A link to your Facebook profile
- 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
2Text and Formatting
HeadingsParagraphsLine BreaksBold and Italic TextBold and Italic AgainRecap - Formatting8Forms and Inputs Part 1
Form BasicsText InputsInput AttributesPassword FieldLabels for InputsRecap - Basic Form11Event Registration Page
Project OverviewHeader Section9Forms and Inputs Part 2
Radio ButtonsCheckboxesDropdownsButtonsButtons in FormsRecap - Forms #1Recap - Forms #2