Font-weight (yazı ağırlığı - kalınlığı)
Kursa 27.99 TL'ye kayıt olmak için TIKLAYINIZ.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Font Weight</title>
<style>
p{
font-weight: inherit;
}
div{
font-weight: bold;
}
</style>
</head>
<body>
<div>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
</p>
</div>
</body>
</html>