1#example {
2 font-style: normal; /* no specification, default */
3 font-style: italic; /* font is italic */
4 font-style: oblique; /* font is italic, even if italic letters are not specified for font family */
5 font-style: inherit; /* inherit property from parent */
6 font-style: initial; /* default value */
7}
1/* There are MANY ways to style your fonts. */
2
3p {
4 font-family: [font];
5 color: [color];
6 font-size: [size in pixels];
7 font-weight: [weight];
8 text-align: [alignment];
9}
10
11/* There are many more, but these are some popular examples.*/