CSS Code:
h4 { color: red; } h5 { color: #9000A1; } h6 { color: rgb(0, 220, 98); }
Display:
This is a red h4 header.
This is a hexadecimal #9000A1 h5 header.
This is an rgb(0, 220, 98) h6 header.
Example form: rgb(Red, Green, Blue); with the range of 0-255 for each value.
CSS Font Family
Font families can be divided into two groups: serif and sans-serif. A sans-serif font does not include the small lines at the end of characters, while a serif font does include these small lines. When choosing which kind you prefer, remember that studies have shown that sans-serif fonts are much easier to read on a computer monitor than serif fonts.CSS Code:
h4 { font-family: sans-serif; } h5 { font-family: serif; } h6 { font-family: arial; }
Display:
This is a header with sans-serif font
This is a header with a serif font
This is a header with an arial font
CSS Font Size
You can manipulate the size of your fonts by using values, percentages, or key terms. Using values are useful if you do not want the user to be able to increase the size of the font because your site will look incorrect if they did so. Percentages are great when you want to change the default font, but do not want to set a static value.CSS Code:
p { font-size: 120%; } ol{ font-size: 10px; } ul{ font-size: x-large; }
Display:
This is a font size of 120%
- This is a font size of 10px
- This is a font size of "x-large"
CSS Font Style
CSS Font-Style is where you define if your font will be italic or not. Possible key terms are the following: italic, oblique, and normal.CSS Code:
p { font-style: italic; } h4{ font-style: oblique; }
Display:
This is an italic font
This is an oblique font
CSS Font Weight
If you want to control the weight of your font (its thickness), using font weight is the best way to go about it. We suggest that you only use font-weight in multiples of 100 (e.g. 200, 300, etc) because any less and you probably will not see any difference. The values range from 100 (thin)-900 (thick).CSS Code:
p { font-weight: 100; } ul{ font-weight: bolder; }
Display:
This is a font with a weight of 100
- This is a font with
- a "bolder" weight
No comments:
Post a Comment