UNIT 1 • STAGE 2 OF 7 • SOUTH DAKOTA
Use HTML lists to organize South Dakota's 9 Tribal nations
In Stage 1, you built the foundation of your HTML page. Your code editor already has what you created — a page with <h1>, two <h2> headings, and <p> paragraphs about South Dakota's Tribal nations.
Look at the preview panel → and you should see your page. In this stage, we'll make it even better by adding lists to organize the 9 Tribal nations.
Lists are one of the most common HTML elements on the web — menus, navigation, search results, and shopping carts are all built with lists!
HTML has two main types of lists:
<ul> - creates bullet points. Use this when the items could be listed in any order — like a list of nations, ingredients, or features.<ol> - creates numbered items automatically. Use this when the sequence matters — like steps in a recipe, ranked results, or historical events in order.Both types use <li> (list item) for each entry. The <li> tags always go inside the <ul> or <ol> — never floating on their own.
Think of <ul> or <ol> as a container, and each <li> as one item inside that container. The browser automatically adds bullet points or numbers — you don't have to type them yourself!
Let's add a <ul> under your Lakota <h2> to list the 6 Lakota communities.
Dewey & Ziebach Counties
Buffalo County
Lyman County
Oglala Lakota County
Todd County
Corson & Sioux Counties
Watch the preview → six bullet points should appear under your Lakota heading. We're using <ul> here because these nations are all equally important — there's no ranking or sequence. A numbered list would imply one nation is "first," which isn't what we mean.
Now do the same for the 3 Dakota and Nakota communities.
Moody County
Roberts County
Charles Mix County
Use <ol> when the order matters. Let's add a quick-fact section with a numbered list.
Notice the numbers appear automatically — you don't type "1.", "2.", "3." yourself. <ol> handles that for you.
Use <ul> for things where order doesn't matter — like a list of nations (no nation is "first"). Use <ol> for steps, rankings, or timelines where sequence is meaningful.
Try adding your own list item. You could add:
<li> with the name of a Tribal nation you'd like to learn more about<ul> with a list of questions you have about the TribesYou've learned <ul>, <ol>, and <li>. In Stage 3, we'll nest lists inside other lists to build even richer structure!