ここは20ピクセルです。

ここは10ポイントです。

ここは親要素の1.5倍です。

ここは1段階大きいフォントサイズです。

ここはフォントサイズが小さめです。


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>文字の大きさを指定する</title>
<style type="text/css">
<!--
p.p1 { font-size: 20px; }
p.p2 { font-size: 10pt; }
p.p3 { font-size: 1.5em; }
p.p4 { font-size: large; }
p.p5 { font-size: smaller; }
-->
</style>
</head>
<body>

<p class="p1">ここは20ピクセルです。</p>
<p class="p2">ここは10ポイントです。</p>
<p class="p3">ここは親要素の1.5倍です。</p>
<p class="p4">ここは1段階大きいフォントサイズです。</p>
<p class="p5">ここはフォントサイズが小さめです。</p>
<P><BR>
</P>
</body>
</html>