/* A font family name and a generic family name */
font-family: "Gill Sans Extrabold", sans-serif;
font-family: "Goudy Bookletter 1911", sans-serif;
/* <absolute-size> 값 */
font-size: xx-small;
font-size: x-small;
font-size: small;
font-size: medium;
font-size: large;
font-size: x-large;
font-size: xx-large;
/* <relative-size> 값 */
font-size: larger;
font-size: smaller;
/* <length> 값 */
font-size: 12px;
font-size: 0.8em;
/* <percentage> 값 */
font-size: 80%;
font-weight: normal;
font-weight: bold;
/* Relative to the parent */
font-weight: lighter;
font-weight: bolder;
font-weight: 100;
font-weight: 200;
font-weight: 300;
font-weight: 400;
font-weight: 500;
font-weight: 600;
font-weight: 700;
font-weight: 800;
font-weight: 900;
font-variant: small-caps
text-align: left;
text-align: right;
text-align: center;
text-align: justify; //양쪽 정렬
text-align: start;
text-align: end;
text-decoration: underline;
text-decoration: overline red; //이렇게 뒤에 색상을 넣을 수 도 있다.
text-decoration: none; //이는 주로 a태그에 사용한다.
letter-spacing : 2em;
word-spacing : 2em;
line-height : 3em;
여담으로 폰트 사용할 때 살짝 회전시켜주면 폰트가 안티앨리어싱이 된것처럼 부드러워지는 효과가 있다고 한다.
transform : rotate(0.04deg);