Giter VIP home page Giter VIP logo

phase-0-html-lists-lab's Introduction

HTML Lists

Learning Goals

  • Recognize unordered and ordered HTML Lists
  • Create unordered lists
  • Identify the ordered list tag
  • Create ordered lists

Introduction

Many HTML tags behave in unique ways. Some apply automatic styling, like p tags that create margins around text. Some, like the header tags, increase the font size. Using these tags delineates our content. When reading HTML, using the correct tags informs us of what the content's purpose is. If we see an h1 tag, we know that we're looking at a big page header. In this lesson, we're going to be looking at a few new tags that help us organize lists of related content.

Getting Started

Fork and clone this lesson into your local environment. Navigate into its directory in the terminal, then run code . to open the files in Visual Studio Code.

Recognize Unordered And Ordered HTML Lists

Let's say, for instance, we were building a personal website and wanted to list out our favorite foods. We could write this like so:

<body>
  <p>Banh Mi</p>
  <p>Grilled Cheese</p>
  <p>Baba Ghanoush</p>
  <p>Tomato soup</p>
  <p>Cheese and crackers</p>
  <p>Sushi</p>
</body>

The above would create a new line on the page for each food, but doesn't really indicate that these things are related. Using the built in ul, ol and li HTML tags however, we can group related list content together. We call such a grouping a "list."

In HTML, we create lists using the <ul> tag, which stands for unordered list, along with the <li> tag for each list item.

To make a list, we write out the opening and closing <ul> tags, and inside them, we'll add <li> tags, each listing a single item. Going back to our favorite foods example, if we wanted to convert it to a list, it would look like this:

<ul>
  <li>Banh Mi</li>
  <li>Grilled Cheese</li>
  <li>Baba Ghanoush</li>
  <li>Tomato soup</li>
  <li>Za’atar Bread</li>
  <li>Sushi</li>
</ul>

Now, instead of just having each item show up on a new line, the content will also be slightly indented and a bullet will appear next to each of them.

Lists are very flexible and we can even nest lists inside of lists. Say we wanted to break down our favorite foods by category. We may have multiple categories and one or more items in each:

<ul>
  <li>
    Sandwiches
    <ul>
      <li>Banh Mi</li>
      <li>Grilled Cheese</li>
    </ul>
  </li>
  <li>
    Snacks
    <ul>
      <li>Baba Ghanoush</li>
      <li>Za’atar Bread</li>
    </ul>
  </li>
  <li>
    Soups
    <ul>
      <li>Tomato soup</li>
    </ul>
  </li>
  <li>
    Sushi
    <ul>
      <li>Sashimi</li>
      <li>Uramaki</li>
    </ul>
  </li>
</ul>

In this example, the nested lists will now be further indented and instead of a solid bullet, they will appear with hollow bullets, indicating a sub-list. Adding a nested list one level deeper will make square bullets appear, allowing us to easily display related and nested content in a readable format.

Create Unordered Lists

recipe list

The first part of this challenge is to make the first 2 tests pass by:

  1. Creating an unordered list
  2. Nesting each grilled cheese ingredient as a list item wrapped in <li> tags

Open index.html in your browser.

Let's say we wanted to list out the ingredients required for making a grilled cheese sandwich. The ingredients are: 2 slices of bread, 4 slices of cheese, 1 tbsp of butter.

For the first part of this challenge, in index.html, create an unordered list that displays these ingredients. Run npm test to see if you can pass the first test. If you've done things correctly, you'll now be passing the first test, but there are more tests to pass! We now need to turn our attention to the next test.

Okay, now, let's say we wanted to make our grilled cheese a little more exciting and add a couple of cheeses, cheddar, mozzarella, and pepper jack.

To pass the second test, inside the li with 4 slices of cheese, add a nested unordered list that lists out the three types of cheese.

After editing your index.html file, go back to the browser and refresh the page you opened earlier. You should see something like this if you've set up your lists correctly:

  • 2 slices of bread
  • 4 slices of cheese
    • cheddar
    • mozzarella
    • pepper jack
  • 1 tbsp of butter

Run npm test again. If your first two tests are passing, great! It's time to talk about another type of list!

Identify the Ordered List Tag

Unordered lists are great for organizing related content where it doesn't matter what goes first, like in our grilled cheese ingredients. In situations where we want items to be displayed in a specific, numbered order, we will want to use the ordered list tag, which is written as <ol> instead of <ul>. Both use <li> tags inside, but this time, <ol> will display a numbered list instead of bullets. If say, we wanted to write a ranked list of favorite foods, it might look like:

<h3>Top 5 Favorite Foods</h3>
<ol>
  <li>Grilled Cheese</li>
  <li>Sushi</li>
  <li>Banh Mi</li>
  <li>Tomato soup</li>
  <li>Baba Ghanoush</li>
</ol>

Top Tip: Feel free to test this out by adding it to index.html, saving and refreshing the tab where the file is open. Now, Grilled Cheese will be displayed as 1. Grilled Cheese as the #1 food (where it belongs).

Once you've got a feel for how this ordered list looks in HTML and how it's displayed in the browser, delete the example code from your index.html file so you can create a new one from scratch for the next deliverable.

Nested ordered lists work the same as unordered, but instead of hollow and square bullets, each nested list will still display numbers.

Note: To create a nested list, you must provide the ol or ul wrapper. Otherwise, an li inside another li will just be displayed as two items at the same level.

Create Ordered Lists

To complete the challenge write the necessary HTML to pass the final test:

  • Create an ordered list with each step for creating grilled cheese as a list item wrapped in <li> tags

Okay, so we've got our grilled cheese ingredients, but what about the steps required to make a grilled cheese? Steps to a recipe need to be in order, otherwise we may end up with burnt cheese covered in bread and topped with a square of butter. The steps to making a basic grilled cheese would be: Spread butter on bread and frying pan, Place bread in frying pan and fry, Add cheese on top of bread, Cover with second slice of bread, Turn over and fry for 2 minutes.

After editing your index.html file, go back to the browser and refresh the page you opened earlier. Your newly added list should look like this:

  1. Spread butter on bread and frying pan
  2. Place bread in frying pan and fry
  3. Add cheese on top of bread
  4. Cover with second slice of bread
  5. Turn over and fry for 2 minutes

Once you've written an ordered list that displays these 5 steps correctly, run npm test to see the tests pass.

Conclusion

Lists in HTML are very useful for organizing related content, and are really the only way to indicate that content is related with basic HTML. Using unordered lists ends up being very useful for more than just listing favorite foods and ingredients. It's possible, for instance, to use list elements to organize navigation links. With styling, we make the content look however we want — remove the bullets, make them line up horizontally — but in our HTML they will still be organized and easy to read.

phase-0-html-lists-lab's People

Contributors

maxwellbenton avatar ihollander avatar lizbur10 avatar danielseehausen avatar drakeltheryuujin avatar graciemcguire avatar jlboba avatar dependabot[bot] avatar sgharms avatar sophiedebenedetto avatar sarogers avatar cjbrock avatar bal360 avatar peterbell avatar timothylevi avatar sophieheb avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.