JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.normal {
font-weight: normal;
}
.bold {
font-weight:bold;
}
.bolder {
font-weight: 900;
}
</style>
</head>
<body>
<p class="normal">Normal</p>
<p class="bold">Bold</p>
<p class="bolder">Bolder</p>
</body>
</html>