<!DOCTYPE html>
<html>
<head>
<title>CSS font-weight property</title>
<style>
p {
font-family: sans-serif;
font-size: 20px;
}
p.one {
font-weight: normal;
}
p.two {
font-weight: bold;
}
p.three {
font-weight: bolder;
}
p.four {
font-weight: 100;
}
p.five {
font-weight: 200;
}
p.six {
font-weight: 500;
}
p.seven {
font-weight: 800;
}
p.eight {
font-weight: 900;
}
</style>
</head>
<body>
<p class="one">This text is normal weight</p>
<p class="two">This text is bold weight</p>
<p class="three">This text is bolder weight</p>
<p class="two">This text is bold weight</p>
<p class="four">This text is 100 weight</p>
<p class="five">This text is 200 weight</p>
<p class="six">This text is 500 weight</p>
<p class="seven">This text is 800 weight</p>
<p class="eight">This text is 900 weight</p>
</body>
</html>