UNIT 1 • STAGE 6 OF 7
Use emphasis, dividers, and polish to complete your page
Your page is looking great! In this stage we'll add four small but powerful HTML elements that make content clearer, more readable, and more meaningful.
The <strong> tag bolds text AND signals to screen readers that this content is especially important. There's a key difference between <strong> and just styling text bold with CSS: <strong> adds meaning, not just appearance. A screen reader (software that reads pages aloud) will actually emphasize the word when it reads it - just like you'd raise your voice on an important word when speaking.
<strong> is better than just making text bold with CSS because screen readers will announce it as "important" - making your page more accessible.
The <em> tag (emphasis) italicizes text. Use it for words you'd stress if speaking aloud - like terms in another language.
Native language words and terms deserve emphasis - they carry meaning that English translations can miss.
The <hr> tag draws a horizontal line across the page. It's a self-closing tag - meaning it has no closing tag. You write just <hr> and the browser does the rest. Self-closing tags make sense for elements that don't wrap around content - a divider line doesn't hold any text, so there's nothing to open and close around.
See how the dividers break up the page into clear sections?
The <br> tag creates a line break inside a paragraph without starting a whole new paragraph block. It's also self-closing. Use it sparingly - it's best for situations where you need short lines separated (like an address, a poem, or a brief two-line label). If you find yourself using many <br> tags in a row to add spacing, that's a sign CSS would do the job better.
Look at your full page in the preview. Make sure you have:
<strong> for key terms<em> for a Native language word<hr> divider between sections<a> links to Tribal nation sitesChallenge: Add your name to the page with a small author credit:
Your page is almost done! In the final stage we'll add a meta description, write HTML comments, and celebrate what you've built.