「CSS」font-sizeで文字サイズを指定する方法
1.数値(px)指定
<div style="font-size:18px;">test AAA</div>
2.割合(%)指定
<div style="font-size:120%;">test BBB</div>
3.キーワード指定
※xx-small、x-small、small、medium、large、x-large、xx-large
<div style="font-size:large;">test BBB</div>
4.サイズ(em)指定
<div style="font-size:2em;">test BBB</div>