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><li> and, right before its </li>, add <ul><li>a county</li></ul>. Press โถ Run and watch the sub-bullet appear.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> 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 Dakota and Nakota list. Each nation gets a nested list holding its county.
<li> items so it holds a nested <ul><li>County</li></ul>. Press Run.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.