Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Creating and Using Lists in HTML | Section
HTML Essentials

bookCreating and Using Lists in HTML

メニューを表示するにはスワイプしてください

Lists are used to organize and present information in a structured format. There are two main types of lists: unordered lists (<ul>) and ordered lists (<ol>).

Unordered lists

Unordered lists present items in a bulleted format. Each item in the list is defined using the <li> (list item) tag. Unordered lists are typically used when the order of items is not significant.

index.html

index.html

copy

The unordered list (<ul>) displays items with bullet points.

Ordered lists

Ordered lists display items in a numbered sequence. Each item in the list is defined using the <li> (list item) tag. Ordered lists are used when the order of items is important and needs to be emphasized.

index.html

index.html

copy

The list is ordered (<ol>), displaying items with numbers.

Nested lists

Lists can also be nested within each other to create hierarchical structures. This means that a list item (<li>) within one list (<ul> or <ol>) can itself contain another list. This is useful for organizing complex information into multiple levels of hierarchy.

index.html

index.html

copy
  • The second list item ("Main item 2") contains a nested unordered list (<ul>), creating a hierarchical structure;
  • Each nested list (<ul>) is indented to indicate its hierarchical level visually.

1. What tag is used to create unordered lists?

2. When would you use an ordered list instead of an unordered list?

3. What tag is missing in the blanks (___)?

question mark

What tag is used to create unordered lists?

正しい答えを選んでください

question mark

When would you use an ordered list instead of an unordered list?

正しい答えを選んでください

question mark

What tag is missing in the blanks (___)?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  14

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 1.  14
some-alt