文字の太さ(font-weight)
<html>
<head>
<title>文字の太さ</title>
<style type="text/css">
<!--
.c1 {
font-weight: 100;
}
.c2 {
font-weight: 700;
}
.c3 {
font-weight: bold;
}
.c4 {
font-weight: bolder;
}
.c5 {
font-weight: lighter;
}
//-->
</style>
</head>
<body>
<div class="c1">太さ100</div>
<br>
<div class="c2">太さ700</div>
<br>
<div class="c3">太さbold</div>
<br>
<div class="c4">太さbolder</div>
<br>
<div class="c5">太さlighter</div>
<br>
</body>
</html>
〔 実行する 〕