以下のようにfont-sizeをptで指定すればフォントのサイズを細かく指定することができますが、
style="font-size : 10pt"
本資料ではpt指定ではなく、largerやlargeなどの文字列指定によるサンプルを記します。
以下のfont-sizeのサンプルHTMLを記します。
<div style="font-size : smaller">font-size : smaller</div> <div style="font-size : small">font-size : small</div> <div style="font-size : x-small">font-size : x-small</div> <div style="font-size : xx-small">font-size : xx-small</div> <div style="font-size : medium">font-size : medium</div> <div style="font-size : larger">font-size : larger</div> <div style="font-size : large">font-size : large</div> <div style="font-size : x-large">font-size : x-large</div> <div style="font-size : xx-large">font-size : xx-large</div>
以下、動作確認用のURLです。
http://web.just4fun.biz/css/5/font-size.html
上記HTMLをブラウザで表示した時のスクリーンショットです。
以上、font-sizeのサンプルHTMLでした。