192k views
4 votes
The Yacht club's website contains of a picture of the yacht club room along with the yacht club rules on the left. On the right side is a list of upcoming events, the company logo, and the yacht club teacher training dates. Sue, the web designer, needs some help with Cascading Style Sheets (CSS) to make sure the pages display correctly. To make the web page display the yacht club rules in a bulleted list, Use should use _____.

1 Answer

4 votes

Answer:

Unordered list element

Step-by-step explanation:

List is use to display list item and can either be Ordered or Unordered.

An Ordered list is used to display item of a list using numbers. To use an ordered list

<ol>

<li> bag </li>

<li> cat </li>

</ol>

Output:

1. bag

2. cat

An Unordered list is used to display item of a list using bullets. To use an unordered list

<ul>

<li> bag </li>

<li> cat </li>

</ul>

Output:

  • bag
  • cat

User Davekaro
by
5.1k points