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

Unit 1 ยท Stage 6

Making Your Content Stand Out

Your page is full of great information. Now you will add small touches that make it clearer and more meaningful: bold for important words, italics for emphasis, and lines that divide your page into sections. Play in the editor, or press ๐Ÿ‘€ Type it with me for a guide. (pause on a highlighted word to see what it does)

1 Four elements that add polish

This stage uses four small elements. Two of them wrap around text to give it meaning, and two of them stand alone to shape the layout.

What this code means
<strong> ... </strong>
Marks text as important. The browser shows it in bold, and a screen reader announces it with extra stress, like raising your voice on a key word.
<em> ... </em>
Adds emphasis. The browser shows it in italics. Use it for a word you would stress when reading aloud, such as a word in another language.
<hr>
A horizontal rule: a divider line across the page. It is self-closing, so there is no </hr>. Use it to break your page into sections.
<br>
A line break inside a paragraph. It is also self-closing, with no </br>. Use it when you want a new line without starting a new paragraph.
๐Ÿ’ก A self-closing tag does not wrap around any text, so it has no closing tag. You write just <hr> or <br> and the browser does the rest.
๐ŸŽฎ Try it: in the editor, wrap any word in <strong> and another in <em>, then press โ–ถ Run to see bold and italics appear.

๐Ÿค” Quick check before you go on

How many Tribal nations call Minnesota home? Type your answer, then press Submit to unlock the next steps.

2 Bold the important numbers

Wrap the count in each nations paragraph in <strong> so the number stands out. This does more than make it bold: it tells a screen reader that the words are important, and the reader announces them with extra stress.

Why strong, not just bold
<strong> vs bold styling
Making text bold with CSS only changes how it looks. <strong> also adds meaning, so screen readers announce it as important. Meaning plus appearance beats appearance alone.
๐ŸŽฎ Try it: update the two count paragraphs.
<p>There are <strong>4 Dakota communities</strong> in southern Minnesota.</p>
<p>There are <strong>7 Anishinaabe communities</strong> in northern Minnesota.</p>
Press Run.

3 Emphasize the Native language words

Use <em> to italicize Ojibwemowin in the Anishinaabe language paragraph, and Dakota in the Dakota history paragraph. Native language words deserve emphasis: they carry meaning that an English translation can miss.

๐ŸŽฎ Try it: update these two paragraphs.
<p><em>Ojibwemowin</em>, the Ojibwe language, is actively being revitalized in Minnesota communities today.</p>
<p>The <em>Dakota</em> people have lived in Minnesota for thousands of years, long before European contact.</p>
Press Run.

4 Add dividers between sections

An <hr> draws a line across the page to separate one section from the next. Remember it is self-closing: just <hr>, with no closing tag. Add one after the Dakota nations list, one before each About section, and one before Quick Facts.

๐ŸŽฎ Try it: put an <hr> on its own line in each spot, for example between the Dakota list and the Anishinaabe heading.
</ul>
<hr>
<h2>Anishinaabe Nations</h2>
Press Run.

5 A multi-line paragraph with br

A <br> starts a new line inside a paragraph without beginning a whole new block. It is self-closing too. Add a short summary just before your Quick Facts list.

Use br sparingly
When to reach for <br>
Good for short lines that belong together, like an address or a two line label. If you need many <br> tags in a row for spacing, CSS is the better tool.
๐ŸŽฎ Try it: add this just before the Quick Facts <ol>.
<p>Minnesota is home to:<br>
4 Dakota nations in the south<br>
7 Anishinaabe nations in the north</p>
Press Run.

6 Make it your own

Sign your work. At the very bottom of the body, add a divider and a small author credit in italics with your name.

โœ“ Finish this stage

To complete Stage 6, your page needs a <strong> around an important number, an <em> around a Native language word, and at least one <hr> divider. 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