List is a section of text in the document that lists the items of a particular group or groups. For example, in a culinary-themed web sites, the list can be the list of foods and drinks, along with the price. List can also be a procedure (sequence of steps) of a particular job, that are to be performed sequentially from the first step to the last step. Example List:
![]()
2) Type List in HTML Documents
In HTML documents, the type of list can be divided into three, namely:
List sequence (ordered list)
List not berututan (unordered list)
List of definitions (definition list)
3) List Threaded
List of successive typically characterized by the use of certain numbering. This numbering bias using the numbers (1, 2, 3, …) as well as terntentu alphabet characters (a, b, c, … or i, ii, iii, …). List of successive generally used for items that are interconnected with each other, or to write down the steps or procedures from terntentu activities that can not be done randomly.
Examples of sequential list is on how to create HTML documents, for example:
![]()
To create a list of sequential in an HTML document, use the <ol> (ordered list), which is paired with the </ ol>. <Ol> tag is used to start a particular sequence list, while </ ol> serves to indicate that the list has ended. Each item in the list must be created using the <li> (list item, which then needs to be closed with the </ li>.
Examples of writing are as follows:
<ol> <li> First Sequence </ li>
<li> Is Second </ li> </ ol>
The attribute for the <ol> is a “type” that indicates the type of penomorannnya. In standard, the type is using a numbering 1, 2, 3, 4 and so on. In addition to the default type, other types that can be used for numbering in a list is:
![]()
4) List No Threaded
Unordered list is a list of items-items can be modified at random positions. List as ni not use numbering as above, but only by using a particular sign or symbol, such as a picture box or round (bullet).
Example :
![]()
In the above example, we can change / randomize the order independently of each item available. This is because every item that is not independent from each other with other items, in contrast to a specific sequence of steps that have to be written sequentially.
To create an unordered list in the HTML document, use the <ul> (unordered list), which is paired with the </ ul>. <Ul> is used to start a particular sequence list, while </ ul> serves to indicate that the list has ended. Each item in the list must be created using the <li> (list item, which then needs to be closed with the </ li>.
Examples of writing are as follows:
<ul> <li> Item one </ li> <li> Item two </ li> </ ul>
The attribute for the <ul> is a “type” that indicates the type of mark for each item in the form of dots mark for default .. In addition to the default type, other types that can be used for the purposes of unordered list is:
![]()
5) List Definition
The definition list is a list that contains a collection of the definition of a particular term, for example, a list of definitions of the term HTML.
Example :
![]()