p {
font-family: "Arial", "Helvetica", sans-serif;
font-size: 18px;
font-weight: bold;
font-style: italic;
color: blue;
background-color: yellow;
text-align: center;
text-decoration: underline;
text-transform: uppercase;
line-height: 1.5;
letter-spacing: 2px;
word-spacing: 5px;
text-shadow: 2px 2px 5px grey;
}
font-family : 글꼴 지정, 콤마 구분
font-size : 폰트 사이즈
font-weight : 폰트 두께 normal bold bolder lighter 또는 숫자를 넣을 수 있음
font-style : normal italic oblique 를 넣을수 있음
text-align : left right center justify, justify는 양끝에 맞춰 텍스트를 정렬해준다.
text-shadow : x,y,radius,color 순서대로 지정 그림자를 넣게 해준다.