Relentless Feather Unit 1 ยท Tribal Nations Stage 5 of 7

Unit 1 ยท Stage 5

Connecting Your Page to the World

Your page names South Dakota'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)

1 What are HTML attributes?

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".

What this code means
<tag attribute="value">
The attribute lives inside the opening tag, after the tag name. It has a name, an equals sign, and a value wrapped in quotation marks.
attribute
The name of the setting you want to change, like href for a link or src for an image.
"value"
The setting itself, always inside quotation marks. For a link, the value is the web address you want to open.
๐Ÿ’ก You have already met one attribute: lang="en" up in the <html> tag tells browsers the page is in English.

2 The anchor tag

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."

What this code means
<a> ... </a>
The anchor element. Whatever text you place between the opening and closing tags becomes the blue, clickable link.
href="https://example.com"
The address the link points to. When someone clicks, the browser opens this web page.
Click here
The link text people actually see and click. Choose clear words, like the name of a nation, instead of "click here."
๐ŸŽฎ Try it: in the editor, add <p><a href="https://www.oglalalakotanation.org">Oglala Sioux Tribe</a></p> anywhere in the body, then press โ–ถ Run to see a clickable link appear.

๐Ÿค” Quick check before you go on

Which tag makes a clickable link? Type it, then press Submit to unlock the next steps.

3 Add a link to a Tribal Nation

Each nation has its own official website. Find your "About the Lakota People" section and, right after the Lakota Today paragraph, add a link to the Oglala Sioux Tribe.

๐ŸŽฏ Respectful linking

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.

๐ŸŽฎ Try it: after the Lakota <p> for Today, add <p>Learn more: <a href="https://www.oglalalakotanation.org">Oglala Sioux Tribe</a></p>. Press Run, then click the link in the preview.

4 Open the link in a new tab

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".

What this code means
target="_blank"
Tells the browser to open the link in a brand new tab instead of navigating away from your page.
The underscore in _blank
Part of the required spelling. It signals a fresh, unnamed tab rather than a named frame. Without target, the click replaces your page entirely.
๐ŸŽฎ Try it: update your Oglala link to <a href="https://www.oglalalakotanation.org" target="_blank">Oglala Sioux Tribe</a>. Press Run, then click the link: it now opens in a new tab.

5 Add links for more nations

Here are official web addresses for several South Dakota Tribal Nations. Add at least one more link under the Dakota and Nakota 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>.

Oglala Sioux Tribeoglalalakotanation.org
Rosebud Sioux Triberosebudsiouxtribe.org
Cheyenne River Sioux Tribecheyenneriversiouxtribe.com
Standing Rock Sioux Tribestandingrock.org
Sisseton-Wahpeton Oyateswotribe.org
Yankton Sioux Tribeyanktonsiouxtribe.org
Flandreau Santee Sioux Tribeflandreau-santee.org
๐ŸŽฎ Try it: after the Dakota and Nakota <p> for Today, add <p>Learn more: <a href="https://www.swotribe.org" target="_blank">Sisseton-Wahpeton Oyate</a></p>. Press Run.

6 Digital citizenship: link responsibly

Every link you create is a choice about whose voice you amplify. When building pages about Indigenous communities, keep these in mind.

  • Link to official Tribal Nation websites, not Wikipedia or news sites.
  • Let each nation speak for itself.
  • Check that your links still work before you publish.
  • Do not link to content that could misrepresent or stereotype a nation.
๐ŸŒŸ Linking to official sources is a way of showing respect in code. The web connects people, and you decide where those connections lead.

7 Make it your own

Add one more official link under either the Lakota or the Dakota and Nakota section. Pick a nation from the list above and point href at its official website.

โœ“ Finish this stage

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.

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