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. Take a look at what you have so far.
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>Putting a list inside a list item is called what? Type one word, 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> so it holds a nested county list. Not sure how? Use the example below, then press โถ Run.<ul>
<li>Shakopee Mdewakanton Sioux Community
<ul><li>Scott County</li></ul>
</li>
<li>Prairie Island Indian Community
<ul><li>Goodhue County</li></ul>
</li>
<li>Lower Sioux Indian Community
<ul><li>Redwood County</li></ul>
</li>
<li>Upper Sioux Community
<ul><li>Yellow Medicine County</li></ul>
</li>
</ul>
Do the same for the Anishinaabe list. Each nation gets a nested list holding its county or region.
<li> items a nested region list. Use the example below if you need it, then press โถ Run.<ul>
<li>White Earth Nation
<ul><li>Northwestern MN</li></ul>
</li>
<li>Red Lake Nation
<ul><li>Northern MN</li></ul>
</li>
<li>Leech Lake Band of Ojibwe
<ul><li>North-central MN</li></ul>
</li>
<li>Fond du Lac Band of Lake Superior Chippewa
<ul><li>Northeastern MN</li></ul>
</li>
<li>Bois Forte Band
<ul><li>Northeastern MN</li></ul>
</li>
<li>Grand Portage Band of Lake Superior Chippewa
<ul><li>Cook County</li></ul>
</li>
<li>Mille Lacs Band of Ojibwe
<ul><li>Central MN</li></ul>
</li>
</ul>
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.