Unit 5 ยท Traditional Lifeways
Stage 7 of 7
Unit 5 ยท Stage 7
You have built the entire site across the first six stages: a sticky navigation bar, three sections with alternating backgrounds, article cards, and a full footer. Every nav link scrolls to its section. The site works. This final stage makes it yours. You will add an image, add a source link, and swap the example content for knowledge from your own Tribal nation. Play in the editor, or press ๐ Type it with me to be guided. (pause on a highlighted word to see what it does)
<img> and an external <a> link, then make the words and colors your own.Your finished Stage 6 code should already be in the editor. You should see the full working site: sticky nav, three sections, article cards, and a complete footer. Now it becomes yours. The example content covers Ojibwe, Dakota, Lakota, Nakota, and MHA Nation lifeways. This stage asks you to center your own Tribal nation's knowledge.
<article> and each <p class="section-intro">, and replace them with what you know from your own community, family, and sources.<h1> title, the nav link text, the section ids, and the footer to match.HTML images use the <img> tag. It is a self-closing tag, meaning it has no closing tag. Two attributes are required: src, the image address, and alt, a text description for screen readers and for when the image fails to load.
srcaltstyle="width: 100%"<img> inside any article. Give it a src and an alt. Use the example below, then press โถ Run.<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Wild_rice_harvesters.jpg/640px-Wild_rice_harvesters.jpg" alt="Two people in a canoe harvesting wild rice on a Minnesota lake" style="width: 100%; border-radius: 6px; margin-bottom: 12px;" >
You can link to a source you used in your research. External links need two extra attributes: target="_blank" to open in a new tab, and rel="noopener" for security.
hrefhttps:// address, not an #id like your nav links.target="_blank"rel="noopener"<p>
<a
href="https://millelacsband.com/home/culture"
target="_blank"
rel="noopener"
>Learn more: Mille Lacs Band of Ojibwe</a>
</p>
Every <img> needs two attributes. One is src. What is the other one, the text description read aloud by a screen reader? Type it, then press Submit to unlock the last steps.
The deep forest green (#2d4a3e) fits woodland and prairie themes. Your nation's territory, or the topic you chose, might call for a different palette. Try changing the header, nav, and footer background color to fit what you are representing.
#4a2d2d, a deep ochre red for plains and dry prairie#1a2e4a, a deep lake blue for water-based nations#3d3520, a dark earth tone for agricultural traditionsbackground-color in header, nav, and footer to the same base color, then adjust the .section-heading and article h3 colors to match.Before you finish, take stock of every semantic tag you used in this site and what each one means.
<header>, the top of the page, holding the title and subtitle<nav>, the navigation bar with anchor links to each section<main>, the primary content, holding all three sections<section>, a thematic chapter with its own heading and article cards<article>, a self-contained piece of content that makes sense on its own<footer>, the bottom of the page with the site description and credits<a href="#id">, an anchor link that jumps within the same page<img src alt>, an image with a required text descriptionA page built with these tags is not just code. It is a structured document. A screen reader navigates it. A search engine indexes it. Another developer reads it and understands the hierarchy immediately. That is what semantic HTML means in practice.
Step back and look at what you built across all five units:
To finish Unit 5, your site needs one <img> with a src and an alt, and one external link with target="_blank". Press Check my work when you are ready. This records that you finished the unit for your teacher, and you can press โฌ in the preview bar to download your site as traditional-lifeways.html.