Unit 1 ยท Tribal Nations
Stage 5 of 7
Unit 1 ยท Stage 5
Your page names Minnesota's Tribal nations and tells their stories. Now you will connect it to the wider web with links, so visitors can go straight to each nation's own official website. Play in the editor, or press ๐ Type it with me for a guide. (pause on a highlighted word to see what it does)
So far your tags, like <h1> and <ul>, have done one job each. An attribute is extra information you place inside the opening tag to tell it how to behave. Attributes always follow the pattern attribute="value".
<tag attribute="value">attribute"value"lang="en" up in the <html> tag tells browsers the page is in English.The <a> tag, short for anchor, makes a clickable link. Its most important attribute is href, short for Hypertext Reference, which means "where this link goes."
<a> ... </a>href="https://example.com"Click hereWhich tag makes a clickable link? Type it, then press Submit to unlock the next steps.
Each nation has its own official website. Find your "About the Dakota People" section and, right after the Dakota Today paragraph, add a link to the Shakopee Mdewakanton Sioux Community.
When you link to a Tribal nation, send people to that nation's official website, not a third-party source like Wikipedia or a news site. This respects each nation's digital sovereignty and lets them speak for themselves.
<p>Learn more: <a href="https://www.shakopeedakota.org">Shakopee Mdewakanton Sioux Community</a></p>
When you link to another website, it is polite to open it in a new tab so visitors do not leave your page. You do this with the target attribute set to "_blank".
target="_blank"_blanktarget="_blank" inside your Shakopee <a> tag, right after the href. Use the example below, then press โถ Run.<a href="https://www.shakopeedakota.org" target="_blank">Shakopee Mdewakanton Sioux Community</a>
Here are official web addresses for several Minnesota Tribal nations. Add at least one more link under the Anishinaabe section, and add others if you like. Follow the same pattern each time: <p>Learn more: <a href="URL" target="_blank">Nation Name</a></p>.
<p>Learn more: <a href="https://www.redlakenation.org" target="_blank">Red Lake Nation</a></p>
Every link you create is a choice about whose voice you amplify. When building pages about Indigenous communities, keep these in mind.
Add one more official link under either the Dakota or the Anishinaabe section. Pick a nation from the list above and point href at its official website.
<p>Learn more: <a href="https://www.whiteearth.com" target="_blank">White Earth Nation</a></p>
To complete Stage 5, your page needs at least two links to official Tribal nation websites. Press Check my work when you are ready. This opens Stage 6 and lets your teacher see that you finished.