Ordered lists are lists where each item in the list is numbered
Unordered lists are lists that begin with a bullet point (rather than characters that indicate order).
Definition lists are made up of a set of terms along with the definitions for each of those terms.
Ordered Lists
< ol>The ordered list is created with the < ol> element.
< li>Each item in the list is placed between an opening < li > tag and a closing < /li > tag.(The listands for list item.)
Unordered Lists
< ul>The unordered list is created with the <ul> element.
< li>Each item in the list is placed between an opening <li> tag and a closing < /li> tag. (The listands for list item.)
Definition List
< ul> The unordered list is created with the <ul> element. < li> Each item in the list is placed between an opening < li> tag and a closing < / li> tag.(The listands for list item.)
< dt>
This is used to contain the term being defined (the definition term).
< dd>
This is used to contain the
definition
### Some page designs expand and shrink to fit the size of the user’s screen. In such designs,the min-width property specifies the smallest size a box can be displayed at when the browser window is narrow, and the max-width property indicates the maximum width a box can stretch to when the browser window is wide —-
### Limiting Height #### In the same way that you might want to limit the width of a box on a page, you may also want to limit the height of it. This is achieved using the min-height and max-height properties.
### Overflowing Content #### overflow #### The overflow property tells the browser what to do if the content contained within a box is larger than the box itself. It can have one of two values:
Type 1 | Description — | — Hidden | This property simply hides any extra content that does not fit in the box SCroll | This property adds a scrollbar to the box so that users can scroll to see the missing content. —–
Borders Type | Border Command —|— Width | border-width Style | border-style Color | border-color —–
Type | Command —|— padding | top - bottom - left - right Margin | top - bottom - left - right —–