Unit 1 ยท Tribal Nations
Stage 2 of 7
Unit 1 ยท Stage 2
Your page already names the Dakota and Anishinaabe nations. Now you will organize them into lists so they are easy to read. Play in the editor, or press ๐ Type it with me for a guide. (pause on a highlighted word to see what it does)
Your page already names the Dakota and Anishinaabe nations of Minnesota, each in its own section. In this stage you will organize those names into tidy lists so they are easy to read. First, take a look at what you have so far.
HTML has two kinds of list. A <ul> makes bullet points, and an <ol> makes numbered points. Each item inside either one is an <li>.
<ul> ... </ul><ol> ... </ol><li> ... </li>Which tag starts a bulleted list? Type it, then press Submit to unlock the next steps.
Under the Dakota paragraph, add a bullet list of the four Dakota communities. A <ul> fits here because no nation is ranked above another. Put each community in its own <li>.
<ul> right after the Dakota <p>. Not sure how it should look? Use the example below, then press โถ Run.<ul> <li>Shakopee Mdewakanton Sioux Community</li> <li>Prairie Island Indian Community</li> <li>Lower Sioux Indian Community</li> <li>Upper Sioux Community</li> </ul>
Do the same under the Anishinaabe paragraph: a second <ul> with an <li> for each of the seven Anishinaabe communities.
<p>. Use the example below if you need it, then press โถ Run.<ul> <li>White Earth Nation</li> <li>Red Lake Nation</li> <li>Leech Lake Band of Ojibwe</li> <li>Fond du Lac Band of Lake Superior Chippewa</li> <li>Bois Forte Band</li> <li>Grand Portage Band of Lake Superior Chippewa</li> <li>Mille Lacs Band of Ojibwe</li> </ul>
Now use an ordered list for a few facts, where the numbers help. As the last thing inside your page, on the line just above the closing </body> tag, add a new <h2> called Quick Facts, then an <ol> with your facts.
<ol> vs <ul><h2>Quick Facts</h2> <ol> <li>Minnesota has 11 federally recognized Tribal nations.</li> <li>4 nations are Dakota, and 7 are Anishinaabe (Ojibwe).</li> <li>Each nation is sovereign and has its own government.</li> </ol>
Add one more <li> of your own: a fact you know about Minnesota Tribes, or the name of a nation you want to learn more about.
<li>I want to learn more about the Mille Lacs Band of Ojibwe.</li>
To complete Stage 2, your page needs bullet lists for both groups of nations and a numbered Quick Facts list. Press Check my work when you are ready. This opens Stage 3 and lets your teacher see that you finished.