Unit 1 ยท Tribal Nations
Stage 3 of 7
Unit 1 ยท Stage 3
Your page already lists the Dakota and Anishinaabe nations. Now you will put a small list inside each nation so it can show its county or region as a sub-bullet. Play in the editor, or press ๐ Type it with me for a guide. (pause on a highlighted word to see what it does)
Your editor starts with everything from Stage 2: a bullet list for the four Dakota nations, a bullet list for the seven Anishinaabe nations, and a numbered Quick Facts list. Look at the preview and read what is there.
Nesting means placing one HTML element inside another. You have already done this: your <li> items live inside a <ul>. Now you will put a whole new <ul> inside a single <li> so each nation can hold its own detail.
a <ul> inside an <li>indentationclosing tagsHere is the shape you are aiming for. The nation name comes first, then a small nested list holds its place:
<li>Nation Name
<ul><li>Place</li></ul>
</li><li> and, right before its </li>, add <ul><li>a county</li></ul>. Press โถ Run and watch the sub-bullet appear.How many Tribal nations call Minnesota home? Type your answer, then press Submit to unlock the next steps.
Find your Dakota <ul> in the editor. Give each nation a nested <ul> with one <li> for its county. Remember to close the inner </ul> before the nation's </li>.
<li> items so it holds a nested <ul><li>County</li></ul>. Press Run and check that each county appears indented under its nation.Do the same for the Anishinaabe list. Each nation gets a nested list holding its county or region.
<li> items so it holds a nested <ul><li>Region</li></ul>. Press Run.You have just built a page whose shape mirrors how the information really fits together. Minnesota has two cultural groups, each group holds several nations, and each nation sits in a county or region. Good HTML respects those real relationships.
nested listsscreen readersAdd one more detail to a nation as a second nested <li>: a website, a fun fact, or something you learned. Just add another <li> inside the same nested <ul>.
<li>Mille Lacs Band of Ojibwe
<ul>
<li>Central MN</li>
<li>millelacsband.com</li>
</ul>
</li>
To complete Stage 3, each nation should hold a nested list with its county or region. Press Check my work when you are ready. This opens Stage 4 and lets your teacher see that you finished.