文字の大きさを変えるには、CSSの font-sizeプロパティを使用し、値に文字の大きさを指定します。
1 2 3
<p>テキスト</p> <p class="large1">テキスト</p> <p class="large2">テキスト</p>
1 2 3 4 5 6
.large1 { font-size: 2rem; } .large2 { font-size: 48px; }