Category: Lists
-
Definition Lists
A description list is defined by <dl> tag along with the <dt> and <dd> tags. Where <dt> tag defines the definition term, and <dd> tag defines the corresponding definition. HTML Definition Lists HTML definition lists define list items having the structure of terms and their corresponding definitions. These types of lists are used to define a listing structure where each list item (data term) contians its corresponding explanation…
-
Ordered Lists
An ordered list is defined by <ol> tag where all list items are marked an ordered list. Ordered HTML Lists An ordered list is a collection of items that have a specific order or sequence. HTML ordered list is created by <ol> tag where each list item is defined by the <li> tag. This type of ordered list is used to show the list items,…
-
Unordered Lists
An HTML unordered list is defined by <ul> tag where all list items are marked with bullets. Unordered HTML Lists An unordered list is a collection of list items that do not have a specific order or sequence and are marked with the bullets. An HTML unordered list is created by <ul> the tag, where each list item is defined by…
-
Lists
HTML lists are group or collection of items. These items can be both organized and unorganized depending on the requirement. They help in organizing, structuring, and presenting information to make it more user-friendly, readable, and accessible. Sample lists are shown below. − Using Lists in HTML To display a list of information in HTML, we use…