CSS font
1body {
2 /* As long as these are defined before font-size, they can be placed in any order. Including line-height is likewise optional but may be declared only after font-size and only following a forward slash https://css-tricks.com/almanac/properties/f/font/ */
3 font: italic small-caps bold 50px/2 'Indie Flower', cursive;
4}
5
6/* Same as */
7
8body {
9 font-family: "Indie Flower", cursive;
10 line-height: 2;
11 font-weight: bold;
12 font-style: italic;
13 font-variant: small-caps;
14 font-size: 50px;
15}
https://developer.mozilla.org/en-US/docs/Web/CSS/font#syntax