文字の大きさを指定する
セレクタ名{font-size:値;}
<span ID="セレクタ名">テキスト</span>
例1
<html> <head> <meta http-equiv="content-type" content="text/html;charset=Shift_JIS"> <title>文字のサイズを指定する</title> <style type="text/css"> <!-- #pt10 {font-size:10pt;} #pt12 {font-size:12pt;} #pt14 {font-size:14pt;} #pt16 {font-size:16pt;} --> </style> </head> <body> <span ID="pt10">10ポイント</span> <span ID="pt12">12ポイント</span> <span ID="pt14">14ポイント</span> <span ID="pt16">16ポイント</span> </body> </html>
こうなります