HTML < ul > Tag - Learn About Website | DaddyFile

0

HTML <ul> Tag

Example

An unordered HTML list:

<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>


Definition and Usage

The <ul> tag defines an unordered (bulleted) list.
Use the <ul> tag together with the <li> tag to create unordered lists.

Tips and Notes

Tip: Use CSS to style lists.
Tip: To create ordered lists, use the <ol> tag.

Differences Between HTML 4.01 and HTML5

The "compact" and "type" attributes are not supported in HTML5.

Post a Comment

 
Top