Unit 1 ยท Tribal Nations
Stage 3 of 7
Unit 1 ยท Stage 3
Your page already lists the Lakota nations and the Dakota and Nakota nations. Now you will put a small list inside each nation so it can show its county 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 six Lakota nations, a bullet list for the three Dakota and Nakota 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>Putting a list inside a list item is called what? Type one word, then press Submit to unlock the next steps.
Find your Lakota <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>Cheyenne River Sioux Tribe
<ul><li>Dewey and Ziebach Counties</li></ul>
</li>
<li>Crow Creek Sioux Tribe
<ul><li>Buffalo County</li></ul>
</li>
<li>Lower Brule Sioux Tribe
<ul><li>Lyman County</li></ul>
</li>
<li>Oglala Sioux Tribe
<ul><li>Oglala Lakota County</li></ul>
</li>
<li>Rosebud Sioux Tribe
<ul><li>Todd County</li></ul>
</li>
<li>Standing Rock Sioux Tribe
<ul><li>Corson and Sioux Counties</li></ul>
</li>
</ul>
Do the same for the Dakota and Nakota list. Each nation gets a nested list holding its county.
<li> items a nested county list. Use the example below if you need it, then press โถ Run.<ul>
<li>Flandreau Santee Sioux Tribe
<ul><li>Moody County</li></ul>
</li>
<li>Sisseton-Wahpeton Oyate
<ul><li>Roberts County</li></ul>
</li>
<li>Yankton Sioux Tribe
<ul><li>Charles Mix County</li></ul>
</li>
</ul>
You have just built a page whose shape mirrors how the information really fits together. South Dakota has two cultural groups, each group holds several nations, and each nation sits in a county. 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>Oglala Sioux Tribe
<ul>
<li>Oglala Lakota County</li>
<li>Part of the Oceti Sakowin</li>
</ul>
</li>
To complete Stage 3, each nation should hold a nested list with its county. Press Check my work when you are ready. This opens Stage 4 and lets your teacher see that you finished.