font-size 속성은 주어진 요소에서 텍스트의 크기를 지정하는 데 사용됩니다. 이 규칙은 페이지에서 텍스트의 시각적 일관성을 만들기 위해 여러 요소에 사용할 수 있습니다. 이 챌린지에서는 제목 크기의 균형을 맞추기 위해 모든 h1에서 h6 태그에 대한 값을 설정합니다.
In thestyletags, set thefont-sizeof the:
h1tag to 68px.
h2tag to 52px.
h3tag to 40px.
h4tag to 32px.
h5tag to 21px.
h6tag to 14px.
<style>
h1{
font-size: 68px;
}
h2 {
font-size:52px;
}
h3 {
font-size:40px;
}
h4 {
font-size:32px;
}
h5 {
font-size:21px;
}
h6 {
font-size:14px;
}
</style>
<h1>This is h1 text</h1>
<h2>This is h2 text</h2>
<h3>This is h3 text</h3>
<h4>This is h4 text</h4>
<h5>This is h5 text</h5>
<h6>This is h6 text</h6>