Skip to content

Edited first sentence for improved clarity #149

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/04-list-styling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ tutorial: "https://www.youtube.com/watch?v=i7UegJUGnRs"

# `04` List styling

In the front end, we often have to list items, and the way to do that is with `<ul>` tags, for unordered/bulleted lists, and `<ol>` tags for ordered/numbered lists.
When working in the front end, we often have to create item lists. We can do that using either `<ul>` or `<ol>` tags! You can use the `<ul>` tags for unordered/bulleted lists and the `<ol>` tags for ordered/numbered lists.

We have CSS control over what these lists look like, what bullets or numbers they use, etc.

Expand Down