Relentless Feather Unit 5 ยท Traditional Lifeways Stage 6 of 7

Unit 5 ยท Stage 6

Trade and Travel + Footer

Your site already has a header, a sticky nav, and two sections that alternate backgrounds. In this final build stage you add the third section, Trade and Travel, which completes the alternating pattern, and then you turn the placeholder footer into a real semantic footer that names and closes the site. Play in the editor, or press ๐Ÿ‘€ Type it with me to be guided. (pause on a highlighted word to see what it does)

๐Ÿ“ฆ Quick recap. You already have a header, a sticky <nav>, and two <section> blocks: Food Gathering on the default background and Buffalo Lifeways on the .section-alt tan. Every property you have used lives in the ๐Ÿ“– Glossary at the top.

1 Where your site stands

Look at the editor. Your two sections alternate backgrounds because only the middle one carries class="section-alt". The third section will leave that class off, so it returns to the default background and the pattern reads default, tan, default.

What is already in your editor
#food-gathering
The first section, on the default off-white background. No extra class.
#buffalo-lifeways with .section-alt
The second section, on the tan background (#ede8df) that breaks up the page.
The nav
It already links to #trade-travel, but that section does not exist yet, so the third link goes nowhere. You are about to fix that.
๐Ÿงญ Why alternate? Alternating backgrounds give a long single-page site a rhythm, so each section feels distinct as you scroll down.

2 Add the Trade and Travel section

Add the third section after the Buffalo Lifeways </section>, still inside <main>. It uses the same .content-section and .articles-grid structure as the others, but notice there is no class="section-alt" here, because this section uses the default background.

What this code means
<section id="trade-travel">
The id matches the third nav link, so clicking Trade and Travel now scrolls straight here.
No section-alt
Leaving the class off returns this section to the default background, completing the default, tan, default rhythm across the page.
Three <article> cards
The same grid pattern you already used, so the new section matches the rest of the page without any new CSS.
โœ๏ธ Add the <section id="trade-travel"> block after the Buffalo Lifeways </section>. Use the example below, then press โ–ถ Run.

๐Ÿค” Quick check before you go on

Which class gives a section the tan alternating background? Type it, then press Submit to unlock the last step.

3 Finish the footer

Your footer currently says only Built with HTML and CSS. A semantic <footer> should carry meaningful content: who made the site and what it is. Update the footer CSS to add breathing room and a top border, then replace the footer content with three lines that name and describe the project.

What these footer choices mean
padding: 40px 20px
Increased from 24px. With three lines of content the footer needs more vertical room so it feels settled and complete, not cramped.
border-top: 4px solid #1a2e27
A thick dark line separates the footer from the last section. The #1a2e27 is slightly darker than the footer's own #2d4a3e, a subtle layering effect.
opacity: 0.85 on footer p
Slightly lighter text makes the footer read as secondary information, present and readable but quieter than the content above it.
Semantic content
A footer that names the project, describes what it is, and gives credit is a <footer> in meaning, not just in tag name.
โœ๏ธ Update the footer rule, add a footer p rule, then replace the footer content. Use the examples below, then press โ–ถ Run.

4 Make it your own

Experiment, then set it the way you like it.

  • Change the footer description to name your own Tribal nation or community.
  • Try a different border-top color or thickness.
  • Adjust the footer padding to make it taller or tighter.

โœ“ Finish this stage

To complete Stage 6, your page needs the Trade and Travel section and a semantic footer with a top border. Press Check my work when you are ready. This opens Stage 7 and lets your teacher see that you finished.

YOUR CODE
PREVIEW
Code Glossary
๐ŸŽฏ Your goal for this stage