CSS Yazı Tipi - CSS font-weight Kullanımı

Konuya git Çalıştır
<!DOCTYPE html>
<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">normal - uzmanim akademi</p>
<p class="light">açık - uzmanim akademi</p>
<p class="thick">koyu- uzmanim akademi</p>
<p class="thicker">daha koyu- uzmanim akademi</p>

</body>
</html>