UNIT 1 • STAGE 2 OF 7
Use HTML lists to organize Minnesota's 11 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 Minnesota'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 11 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 Dakota <h2> to list the 4 Dakota communities.
Scott County
Goodhue County
Redwood County
Yellow Medicine County
Watch the preview → four bullet points should appear under your Dakota 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 7 Anishinaabe communities.
Northwestern MN
Northern MN
North-central MN
Northeastern MN
Northeastern MN
Cook County
Central MN
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. If you add or remove an item later, the browser renumbers everything automatically too.
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. Choosing the right one makes your page more accurate and easier for screen readers to describe.
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!