Class-03 Readings
1. HTML lists
-
Unordered HTML List
``` An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
The list items will be marked with bullets (small black circles) by default:
- Coffee
- Tea
- Milk
- ### Ordered HTML List
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.
The list items will be marked with numbers by default:
- Coffee
- Tea
- Milk
```
2. CSS boxes
-
CSS Border Properties
The CSS border properties allow you to specify the style, width, and color of an element’s border.
-
CSS Margins
The CSS margin properties are used to create space around elements, outside of any defined borders.
With CSS, you have full control over the margins. There are properties for setting the margin for each side of an element (top, right, bottom, and left).
-
CSS Padding
The CSS padding properties are used to generate space around an element’s content, inside of any defined borders.
With CSS, you have full control over the padding. There are properties for setting the padding for each side of an element (top, right, bottom, and left).