CSS font

https://www.cssfontstack.com/

body {
  /* 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/ */
  font: italic small-caps bold 50px/2 'Indie Flower', cursive;
}

/* Same as */

body {
  font-family: "Indie Flower", cursive;
  line-height: 2;
  font-weight: bold;
  font-style: italic;
  font-variant: small-caps;
  font-size: 50px;
}

https://developer.mozilla.org/en-US/docs/Web/CSS/font#syntax

欢迎通过「邮件」或者点击「这里」告诉我你的想法
Welcome to tell me your thoughts via "email" or click "here"