The ordered list is created with the < ol > element.Each item in the list is placed between an opening < li > tag and a closing < /li > tag. (The li stands for list item.)
The unordered list is created with the < ul > element.Each item in the list is placed between an opening < li > tag and a closing < /li > tag.
The description list is created using < dl > element. The < dl > element is used in conjunction with the < dt > element which specify a term, and the < dd > element which specify the term’s definition.
All HTML elements can be considered as boxes. In CSS, the term “box model” is used when talking about design and layout.
The CSS box model is essentially a box that wraps around every HTML element. It consists of: margins, borders, padding, and the actual content.


Syntax:
* var arrayName = new Array();
* var arrayName = new Array(Number length);
* var arrayName = new Array(element1, element2, element3,... elementN);

for(initialExpression; condition; updateExpression) { // for loop body }

