<html>
<head>
<style>
p.normal {
font-weight: normal;
}
p.light {
font-weight: lighter;
}
p.thick {
font-weight: bold;
}
p.thicker {
font-weight: 900;
}
</style>
</head>
<body>
<p class="normal">Это параграф.</p>
<p class="light">Это параграф.</p>
<p class="thick">Это параграф.</p>
<p class="thicker">Это параграф.</p>
</body>
</html>