Computerhelp4all logo Articles AboutTopicsQuizzesComputer Questions & AnswersComputer Terms & DefinitionsActivitiesContact

What Is The HTML <ul> Tag?

What Is The HTML Ul Tag

Date First Published: 2nd February 2023

Topic: Web Design & Development

Subtopic: Web Development

Article Type: Computer Terms & Definitions

Difficulty: Medium

Difficulty Level: 5/10

Learn more about what the HTML <ul> tag is in this article.

In HTML, the <ul> tag is used to define an unordered (bulleted) list, which groups items that do not have a numerical ordering. This means that their order in the list is meaningless and when changing the order of the list of items, the meaning does not change.

Even though <ul> tags were not standardised until HTML 2.0, they had been defined in the first published descriptions of HTML by Tim Berners-Lee in 1992. This tag is supported by all major web browsers.

Note: Info Icon

To create an ordered (numbered) list, use the <ol> tag.


Example Of The <ul> Tag

An example of the <ul> tag with the output can be seen below:

<h2>Unordered List</h2> <ul> <li>Tea</li> <li>Coffee</li> <li>Milk</li> </ul>

Unordered List

  • Tea
  • Coffee
  • Milk


Feedback

  • Is there anything that you disagree with on this page?
  • Are there any spelling, grammatical, or punctuation errors on this page?
  • Are there any broken links or design errors on this page?

If so, it is important that you tell me as soon as possible on this page.