font-weight

プロパティの説明

font-weightは、文字の太さを指定するプロパティです。全ての要素に指定することができます。

指定できる値

normal
通常の太さにします。
bold
太字にします。

サンプル

サンプルページ

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 "https://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">

<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <meta http-equiv="Content-Style-Type" content="text/css">
 <title>サンプルページ</title>
 <style type="text/css">
 <!--
 .no{font-weight:normal;}
 .bo{font-weight:bold;}
 -->
 </style>
</head>

<body>
 <h1>サンプルページ</h1>
 <h2>h2の通常設定。</h2>
 <h2 class="no">h2にnormalを指定。</h2>
 <p>pの通常設定。</p>
 <p class="bo">pにboldを指定。</p>
</body>

</html>