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 the name of a nation or people.
<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

Which tag makes text bold and important? Type it, 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>3 Sioux and Dakota Nations</strong> in North Dakota.</p>
<p>There are <strong>2 MHA Nation and Anishinaabe communities</strong> in North Dakota.</p>
Press Run.

3 Emphasize the nation and people names

Use <em> to italicize Dakota and Lakota in the history paragraph, and Mandan, Hidatsa, and Arikara in the MHA Nation paragraph. These nation and people names deserve emphasis: they carry meaning that a general label can miss.

๐ŸŽฎ Try it: update these two paragraphs.
<p>... are <em>Dakota</em> and <em>Lakota</em> peoples ...</p>
<p>The Three Affiliated Tribes, the <em>Mandan</em>, <em>Hidatsa</em>, and <em>Arikara</em>, ...</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 Sioux and 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 Sioux and Dakota list and the MHA heading.
</ul>
<hr>
<h2>MHA Nation and Anishinaabe</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>North Dakota is home to:<br>
3 Sioux and Dakota Nations<br>
2 MHA Nation and Anishinaabe communities</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> for emphasis, 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