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.

๐Ÿค” 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.
โœ๏ธ Wrap the count in each of the two nation paragraphs in <strong>. Use the example below, then 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.

โœ๏ธ Wrap each Native-language word in <em>. Use the example below, then 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.

โœ๏ธ Put an <hr> on its own line between sections. Use the example below, then 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.
โœ๏ธ Add this short summary just above the Quick Facts <ol>. Use the example below, then 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 <strong> around both counts, <em> around both Native-language words, at least one <hr> divider, and your <br> summary. 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